/********** Fee Structure Page CSS **********/

:root {
    --radius-lg: 15px;
    --shadow-soft: 0 5px 25px rgba(0, 0, 0, 0.08);
    --plum: #103741;
    --plum-soft: #6c757d;
    --cream: #FFF5F3;
    --cream-2: #f8f0ea;
    --coral: #FE5D37;
    --coral-2: #FE5D37;
    --sun-2: #FE5D37;
    --mint-2: #4E9A3B;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-lg, 15px);
    overflow: hidden;
    box-shadow: var(--shadow-soft, 0 5px 25px rgba(0, 0, 0, 0.08));
    background: var(--white, #FFFFFF);
}

.fee-table thead tr.fee-table-header th {
    background: var(--plum, #103741);
    color: var(--cream, #FFF5F3);
    padding: 16px 20px;
    text-align: center;
    font-family: 'Lobster Two', cursive;
    font-weight: 700;
    font-size: 1.4rem;
}

.fee-table thead tr.fee-table-subheader th {
    background: var(--cream-2, #f8f0ea);
    color: var(--plum, #103741);
    padding: 12px 16px;
    text-align: center;
    font-family: 'Lobster Two', cursive;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 3px solid var(--coral, #FE5D37);
}

.fee-table thead tr.fee-table-subheader th small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--plum-soft, #6c757d);
}

.fee-table tbody td {
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(73, 52, 71, 0.08);
    font-weight: 500;
    color: var(--plum, #103741);
}

.fee-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--plum, #103741);
}

.fee-table tbody tr:hover {
    background: var(--cream-2, #f8f0ea);
}

.fee-table tbody tr.fee-highlight {
    background: #FFD400;
}

.fee-table tbody tr.fee-highlight:hover {
    background: #f0c800;
}

.fee-table tbody tr.fee-transport td {
    background: #d4ed9a;
    font-weight: 600;
}

.fee-note {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--plum-soft, #6c757d);
}

.transport-details {
    line-height: 1.8;
}

.fee-school-name {
    font-family: 'Lobster Two', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--coral-2, #FE5D37);
}

.table-heading {
    margin: 0;
    color: var(--cream, #FFF5F3);
    font-family: 'Lobster Two', cursive;
    font-weight: 700;
    font-size: 1.4rem;
}

.fee-documents,
.fee-notes {
    background: var(--white, #FFFFFF);
    border-radius: var(--radius-lg, 15px);
    padding: 30px 35px;
    box-shadow: var(--shadow-soft, 0 5px 25px rgba(0, 0, 0, 0.08));
}

.fee-section-title {
    font-family: 'Lobster Two', cursive;
    font-size: 1.3rem;
    margin-bottom: 18px;
    color: var(--plum, #103741);
}

.documents-list,
.notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.documents-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(73, 52, 71, 0.06);
    font-size: 1rem;
    color: var(--plum-soft, #6c757d);
    display: flex;
    align-items: center;
    gap: 12px;
}

.documents-list li:last-child {
    border-bottom: none;
}

.notes-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(73, 52, 71, 0.06);
    font-size: 0.95rem;
    color: var(--plum-soft, #6c757d);
    line-height: 1.6;
}

.notes-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .fee-table {
        font-size: 0.85rem;
    }
    
    .fee-table thead tr.fee-table-header th {
        font-size: 1rem;
        padding: 12px;
    }
    
    .fee-table tbody td {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .fee-documents,
    .fee-notes {
        padding: 20px;
    }
    
    .fee-school-name {
        font-size: 1.2rem;
    }
    
    .fee-section-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .fee-table {
        font-size: 0.7rem;
    }
    
    .fee-table tbody td {
        padding: 6px 6px;
        font-size: 0.7rem;
    }
    
    .fee-table thead tr.fee-table-header th {
        font-size: 0.85rem;
        padding: 10px;
    }
    
    .fee-table thead tr.fee-table-subheader th {
        font-size: 0.75rem;
        padding: 8px 6px;
    }
}