/* Fee Structure Page Styles */

.fee-structure-header {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
  }
  
  .fee-structure-title {
    color: #0d6efd;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .fee-structure-subtitle {
    color: #6c757d;
    font-weight: 300;
  }
  
  .section-nav {
    margin-bottom: 2rem;
  }
  
  .section-nav .btn {
    margin: 0.25rem;
  }
  
  .class-card {
    margin-bottom: 2rem;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  }
  
  .class-card .card-header {
    background-color: #0d6efd;
    color: white;
    font-weight: 600;
  }
  
  .fee-table th {
    background-color: #f8f9fa;
  }
  
  .fee-table .amount {
    text-align: right;
    font-family: monospace;
    font-weight: 600;
  }
  
  .fee-table .frequency {
    text-align: center;
  }
  
  .fee-table tfoot {
    font-weight: 700;
    background-color: #f8f9fa;
  }
  
  .fee-table tfoot .total-row {
    background-color: #e7f1ff;
  }
  
  .notes-card {
    margin-bottom: 2rem;
    border-left: 4px solid #ffc107;
  }
  
  .notes-card .card-header {
    background-color: #fff8e1;
    color: #856404;
    font-weight: 600;
  }
  
  .payment-info-card {
    margin-bottom: 2rem;
  }
  
  .payment-info-card .card-header {
    background-color: #17a2b8;
    color: white;
    font-weight: 600;
  }
  
  .payment-method-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    border-radius: 50%;
    margin-right: 1rem;
  }
  
  .contact-card {
    margin-bottom: 2rem;
  }
  
  .contact-card .card-header {
    background-color: #28a745;
    color: white;
    font-weight: 600;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    border-radius: 50%;
    margin-right: 1rem;
  }
  
  @media (max-width: 767.98px) {
    .fee-table {
      font-size: 0.875rem;
    }
  
    .fee-structure-title {
      font-size: 1.75rem;
    }
  
    .fee-structure-subtitle {
      font-size: 1rem;
    }
  }
  