        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #150b59 0%, #2d1b8f 100%);
            min-height: 100vh;
            padding: 40px 20px;
        }

        .fees-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.6s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .logo{
            width: 25%;
        }

        .header-section {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 3px solid #150b59;
        }

        .header-section h2 {
            color: #150b59;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .form-section {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
        }

        .form-label {
            font-weight: 600;
            color: #150b59;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 12px;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-control:focus, .form-select:focus {
            border-color: #150b59;
            box-shadow: 0 0 0 0.2rem rgba(21, 11, 89, 0.15);
        }

        .btn-get-fees {
            background: #007bff;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            width: 100%;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 20px;
        }

        .btn-get-fees:hover {
            background: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }

        .details-section {
            display: none;
            animation: fadeIn 0.6s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .student-info {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .student-info p {
            margin: 8px 0;
            font-size: 1rem;
        }

        .student-info strong {
            color: #150b59;
            font-weight: 600;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #150b59;
            margin: 30px 0 20px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #150b59;
        }

        .table-responsive {
            margin: 20px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
             width: 100%;
    overflow-x: auto; /* horizontal scroll only if content overflows */
    -webkit-overflow-scrolling: touch; /* smooth scroll on mobile */
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 0;
        }

        table thead th {
            background: #150b59;
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
            font-size: 1rem;
        }

        table tbody td {
            padding: 15px;
            border-bottom: 1px solid #dee2e6;
            font-size: 0.95rem;
        }

        table tbody tr {
            transition: background 0.2s;
        }

        table tbody tr:hover {
            background: #f8f9fa;
        }

        table tbody tr:last-child td {
            border-bottom: none;
        }

        .btn-pay-now, .btn-details {
            background: #007bff;
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.9rem;
        }

        .btn-pay-now:hover, .btn-details:hover {
            background: #0056b3;
            transform: translateY(-2px);
        }



        .footer-info {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 2px solid #e0e0e0;
            color: #666;
        }

        .footer-info p {
            margin: 5px 0;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .fees-container {
                padding: 25px;
            }

            table {
                font-size: 0.85rem;
            }

            table thead th, table tbody td {
                padding: 10px;
            }

            .btn-pay-now, .btn-details {
                padding: 6px 15px;
                font-size: 0.85rem;
            }

            
        }