.fee-section {
  font-family: Arial, sans-serif;
  background-color: #f4f7f9;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.table-container {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  max-width: 100%;
  display: block;
  width: 80%;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
  border-radius: 18px;
  margin-bottom: 10px;
}

th, td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  white-space: nowrap;
}
tr td{
  color: #000;
  font-weight: 400;
}
thead {
  background-color: #2e86de;
  color: white;
}

tbody tr:nth-child(even) {
  background-color: #f2f6fc;
}

tbody tr:hover {
  background-color: #e0ecff;
}

th {
  font-weight: bold;
}

.note {
  margin-top: 10px;
  color: #2c3e50;
  font-style: italic;
}

@media screen and (max-width: 600px) {
  .fee-section {
    padding: 20px 10px;
  }

  .table-container {
    width: 95%;
  }
}
