.table-div {
  display: flex;
  justify-content: center;
}

table img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

td,
th {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: #343637;
  letter-spacing: 1px;
  padding: 12px;
  text-align: center;
}

table a {
  color: #bb884b;
  text-decoration: none;
}

@media (max-width: 768px) {
  .table-h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 25px;
  }

  table {
    font-size: 0.8rem;
  }

  td,
  th {
    padding: 8px 4px;
    font-size: 0.8rem;
  }

  table img {
    width: 50px;
    height: 50px;
  }
}

.table-btn {
  display: inline-block;
  text-decoration: none;
  background-color: #343637;
  color: #ccd5d9;
  border: 1px solid #78746e;

  align-self: center;
  padding: 6px 16px;

  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.5px;

  border: none;
  outline: none;
  border-radius: 999px;

  cursor: pointer;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.table-btn:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  color: #bb884b;
  transform: translateY(-2px);
}
