.table-wrapper {
  overflow-x: auto;
  background: #f9fff9;
  border-radius: 10px;
  padding: 20px;
}

table {
  border-collapse: collapse;
  min-width: 900px;
}

th, td {
  text-align: center;
  vertical-align: middle;
}

thead th {
  background-color: #16A086; /* Updated */
  color: #fff;
  font-weight: 600;
}

tbody td {
  background-color: #e0f7f4; /* Light teal */
}

tbody tr:nth-child(even) td {
  background-color: #c8efea; /* Slightly darker teal */
}

h2 {
  color: #16A086; /* Updated */
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  th, td {
    font-size: 13px;
    padding: 8px;
  }
}
