:root {
            --primary: #3498db;
            --secondary: #2c3e50;
            --success: #27ae60;
            --danger: #e74c3c;
            --warning: #f39c12;
            --info: #17a2b8;
            --light: #f8f9fa;
            --dark: #343a40;
            --gray: #6c757d;
            --border-radius: 8px;
            --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Calibri, kalpurush;
        }

        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }


@font-face {
    font-family: 'calibri';
    src: url('https://arbd24.github.io/img/font/calibri.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'kalpurush';
    src: url('https://arbd24.github.io/img/font/kalpurush.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        .header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 20px 0;
            box-shadow: var(--box-shadow);
            margin-bottom: 25px;
        }

        .header h1 {
            font-size: 2.2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 10px;
        }

        .header p {
            text-align: center;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Navigation Styles */
        .nav-container {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 15px;
            margin-bottom: 25px;
            box-shadow: var(--box-shadow);
        }

        .nav-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
			font-weight: bold;
            gap: 10px;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
			font-weight: bold;
            gap: 8px;
            padding: 10px 18px;
            background-color: var(--light);
            color: var(--dark);
            text-decoration: none;
            border-radius: var(--border-radius);
            transition: var(--transition);
            border: 1px solid #e0e0e0;
        }

        .nav-link:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--box-shadow);
        }

        .nav-link i {
            font-size: 1.1rem;
        }

        /* Filter Section */
        .filter-section {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 20px;
            margin-bottom: 25px;
            box-shadow: var(--box-shadow);
        }

        .filter-section h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            text-align: center;
            font-size: 1.4rem;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }

        .filter-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        .filter-form table {
            width: 100%;
            border-collapse: collapse;
        }

        .filter-form td {
            padding: 10px;
            vertical-align: top;
        }

        .filter-form label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: var(--secondary);
        }

        .filter-form input,
        .filter-form select {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }

        .filter-form input:focus,
        .filter-form select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }

        .filter-actions {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .btn {
            padding: 10px 24px;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
			text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
            box-shadow: var(--box-shadow);
        }

        .btn-secondary {
            background-color: var(--gray);
            color: white;
        }

        .btn-secondary:hover {
            background-color: #5a6268;
            transform: translateY(-2px);
            box-shadow: var(--box-shadow);
        }

/* Form Container */
        .form-container {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--box-shadow);
        }

        .form-header {
            text-align: center;
            margin-bottom: 30px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 15px;
        }

        .form-header h2 {
            font-size: 1.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .form-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        .form-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        .form-section {
            margin-bottom: 25px;
            padding: 20px;
            border-radius: var(--border-radius);
            background-color: #f8f9fa;
            border-left: 4px solid var(--primary);
        }

        .form-section h3 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .form-section h3 i {
            color: var(--primary);
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--secondary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }

        .form-group textarea {
            min-height: 80px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .photo-section {
            background-color: #e8f4fc;
            padding: 5px;
            border-radius: var(--border-radius);
            border: 2px dashed var(--primary);
            text-align: center;
            height: fit-content;
        }

        .photo-preview {
            width: 200px;
            height: 200px;
            border: 2px dashed #ccc;
            border-radius: var(--border-radius);
            margin: 0 auto 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: white;
            overflow: hidden;
        }

        .photo-preview i {
            font-size: 3rem;
            color: #ccc;
        }
		
		.signature-preview {
            width: 200px;
            height: 80px;
            border: 2px dashed #ccc;
            border-radius: var(--border-radius);
            margin: 15px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: white;
            overflow: hidden;
        }

        .signature-preview i {
            font-size: 1.5rem;
            color: #ccc;
        }


        .file-input-wrapper {
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .file-input-wrapper input[type="file"] {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .file-input-label {
            display: block;
            padding: 12px 15px;
            background-color: var(--primary);
            color: white;
            border-radius: var(--border-radius);
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
        }

        .file-input-label:hover {
            background-color: #2980b9;
        }

        .file-info {
            margin-top: 10px;
            font-size: 0.85rem;
            color: var(--gray);
        }

        .form-actions {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
            grid-column: 1 / -1;
        }

       /* Responsive */
        @media (max-width: 992px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .nav-links {
                gap: 8px;
            }
            
            .nav-link {
                padding: 8px 14px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 1.8rem;
            }
            
            .form-container {
                padding: 20px;
            }
            
            .form-section {
                padding: 15px;
            }
        }

        /* Summary Card */
        .summary-card {
            background: linear-gradient(135deg, var(--success), #2ecc71);
            color: white;
            border-radius: var(--border-radius);
            padding: 8px;
            text-align: center;
            margin-bottom: 10px;
            box-shadow: var(--box-shadow);
        }

        .summary-card h2 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .summary-card .count {
            font-size: 2.5rem;
            font-weight: 700;
        }

        /* Class Section */
        .class-section {
            margin-bottom: 30px;
        }

        .class-header {
            background: linear-gradient(135deg, var(--secondary), #34495e);
            color: white;
            padding: 7px;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .class-header h2 {
            font-size: 1.4rem;
            font-weight: 600;
        }

        .class-stats {
            display: flex;
            gap: 15px;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9rem;
        }

        .stat-item i {
            font-size: 1rem;
        }

        /* Table Styles */
        .table-container {
            background-color: white;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
        }

        th {
            background-color: var(--light);
            padding: 5px;
            text-align: left;
            font-weight: 600;
            color: var(--secondary);
            border-bottom: 2px solid #e0e0e0;
        }

        td {
            padding: 4px;
            text-align: left;
            border: 1px solid #e0e0e0;
        }

        tr:hover {
            background-color: #f8f9fa;
        }

        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 3px;
        }

        .action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: var(--light);
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
        }

        .action-btn:hover {
            transform: scale(1.1);
        }

        .btn-edit {
            background-color: rgba(52, 152, 219, 0.1);
            color: var(--primary);
        }

        .btn-edit:hover {
            background-color: var(--primary);
            color: white;
        }

        .btn-view {
            background-color: rgba(39, 174, 96, 0.1);
            color: var(--success);
        }

        .btn-view:hover {
            background-color: var(--success);
            color: white;
        }

        .btn-certificate {
            background-color: rgba(243, 156, 18, 0.1);
            color: var(--warning);
        }

        .btn-certificate:hover {
            background-color: var(--warning);
            color: white;
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
            color: var(--gray);
            border-top: 1px solid #e0e0e0;
        }

        .logout-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background-color: var(--danger);
            color: white;
            text-decoration: none;
            border-radius: var(--border-radius);
            font-weight: 500;
            transition: var(--transition);
        }

        .logout-btn:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
            box-shadow: var(--box-shadow);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .nav-links {
                gap: 8px;
            }
            
            .nav-link {
                padding: 8px 14px;
                font-size: 0.9rem;
            }
            
            .filter-form table {
                display: block;
            }
            
            .filter-form tr {
                display: flex;
                flex-wrap: wrap;
            }
            
            .filter-form td {
                flex: 1 1 50%;
                min-width: 150px;
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 1.8rem;
            }
            
            .class-header {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .class-stats {
                justify-content: center;
            }
            
            .filter-form td {
                flex: 1 1 100%;
            }
        }
		
		
	
		
		        /* Profile Container */
        .profile-container {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--box-shadow);
        }

        .profile-header {
            text-align: center;
            margin-bottom: 30px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 15px;
        }

        .profile-header h2 {
            font-size: 1.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .profile-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, var(--info), #138496);
        }

        .student-id-badge {
            background: linear-gradient(135deg, var(--info), #138496);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 10px;
        }

        .profile-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        .profile-section {
            margin-bottom: 25px;
            padding: 20px;
            border-radius: var(--border-radius);
            background-color: #f8f9fa;
            border-left: 4px solid var(--info);
        }

        .profile-section h3 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .profile-section h3 i {
            color: var(--info);
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .info-item {
            margin-bottom: 12px;
        }

        .info-label {
            display: block;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 5px;
            font-size: 0.9rem;
        }

        .info-value {
            padding: 10px 12px;
            background-color: white;
            border-radius: var(--border-radius);
            border: 1px solid #e0e0e0;
            font-size: 1rem;
            min-height: 44px;
            display: flex;
            align-items: center;
        }

        .info-value.bangla {
            font-family: Calibri, kalpurush;
            font-weight: 500;
        }

        .info-value.highlight {
            background-color: #e8f4fc;
            border-color: var(--info);
            font-weight: 600;
        }

        .full-width {
            grid-column: 1 / -1;
        }
       .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .status-active {
            background-color: #d4edda;
            color: #155724;
        }

        .status-inactive {
            background-color: #f8d7da;
            color: #721c24;
        }
		 .btn-warning {
            background-color: var(--warning);
            color: white;
        }

        .btn-warning:hover {
            background-color: #e67e22;
            transform: translateY(-2px);
            box-shadow: var(--box-shadow);
        }

        .btn-danger {
            background-color: var(--danger);
            color: white;
        }

        .btn-danger:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
            box-shadow: var(--box-shadow);
        }
		
		
		

        .nav-link:hover {
            background-color: var(--info);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--box-shadow);
        }

        .nav-link i {
            font-size: 1.1rem;
        }

        /* Profile Container */
        .profile-container {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--box-shadow);
        }

        .profile-header {
            text-align: center;
            margin-bottom: 30px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 15px;
        }

        .profile-header h2 {
            font-size: 1.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .profile-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, var(--info), #138496);
        }

        .student-id-badge {
            background: linear-gradient(135deg, var(--info), #138496);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 10px;
        }

        .profile-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        .profile-section {
            margin-bottom: 25px;
            padding: 20px;
            border-radius: var(--border-radius);
            background-color: #f8f9fa;
            border-left: 4px solid var(--info);
        }

        .profile-section h3 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .profile-section h3 i {
            color: var(--info);
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .info-item {
            margin-bottom: 12px;
        }

        .info-label {
            display: block;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 5px;
            font-size: 0.9rem;
        }

        .info-value {
            padding: 10px 12px;
            background-color: white;
            border-radius: var(--border-radius);
            border: 1px solid #e0e0e0;
            font-size: 1rem;
            min-height: 44px;
            display: flex;
            align-items: center;
        }

        .info-value.bangla {
            font-family: Calibri, kalpurush;
            font-weight: 500;
        }


      .education-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .education-table th {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 15px;
            text-align: center;
            font-weight: 600;
        }

        .education-table td {
            padding: 12px;
            border: 1px solid #e0e0e0;
            text-align: center;
        }

        .education-table input {
            width: 100%;
            padding: 8px 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 0.9rem;
        }
		
		.instruction-box {
            background: linear-gradient(135deg, #fff3cd, #ffeaa7);
            border: 1px solid #ffecb3;
            border-radius: var(--border-radius);
            padding: 20px;
            margin-bottom: 25px;
            text-align: center;
        }

        .instruction-box h3 {
            color: #856404;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .instruction-box p {
            color: #856404;
            margin-bottom: 5px;
            font-size: 0.95rem;
        }

.warning-box {
            background: linear-gradient(135deg, #f8d7da, #f5c6cb);
            border: 1px solid #f5c6cb;
            border-radius: var(--border-radius);
            padding: 20px;
            margin: 20px 0;
            text-align: center;
        }

        .warning-box h4 {
            color: #721c24;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .warning-box p {
            color: #721c24;
            margin-bottom: 5px;
            font-size: 0.9rem;
        }
		
		.teacher-name {
            font-weight: 600;
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }

        .teacher-name:hover {
            color: var(--primary);
        }
		
		        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 50px 20px;
            color: var(--gray);
        }

        .empty-state i {
            font-size: 4rem;
            margin-bottom: 20px;
            color: #ddd;
        }

        .empty-state h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--gray);
        }
		
		        /* Filter Section */
        .filter-section {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: var(--box-shadow);
        }

        .filter-section h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            text-align: center;
            font-size: 1.4rem;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }

        .filter-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }



        .filter-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }


  
        .summary-card .subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Class Cards */
        .class-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .class-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--box-shadow);
            border-left: 5px solid var(--success);
            transition: var(--transition);
        }

        .class-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
        }

        .class-total {
            background: var(--success);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }


        .stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray);
            font-weight: 500;
        }

        .stat-boys .stat-value {
            color: #3498db;
        }

        .stat-girls .stat-value {
            color: #e84393;
        }

        .groups-section {
            margin-top: 15px;
        }

        .groups-title {
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .groups-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .group-badge {
            background: linear-gradient(135deg, var(--info), #138496);
            color: white;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }


        .nav-link:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--box-shadow);
        }

        /* Form Section */
        .form-section {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--box-shadow);
        }

        .form-title {
            color: var(--secondary);
            margin-bottom: 25px;
            text-align: center;
            font-size: 1.6rem;
            font-weight: 600;
            position: relative;
            padding-bottom: 15px;
        }

        .form-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        .form-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 15px;
        }

        .form-table tr {
            transition: var(--transition);
        }

        .form-table tr:hover {
            background-color: rgba(52, 152, 219, 0.05);
        }

        .form-table td {
            padding: 8px 8px;
            border: 1px solid #e0e0e0;
        }

        .form-table td:first-child {
            width: 25%;
            font-weight: 500;
            color: var(--secondary);
            background-color: var(--light);
        }

        .form-table td:nth-child(2) {
            width: 5%;
            text-align: center;
            font-weight: bold;
            color: var(--primary);
        }

        .form-table td:nth-child(3) {
            width: 48%;
        }

        .form-label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .form-input,
        .form-select {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-input:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }


        /* Submit Button */
        .submit-container {
            text-align: center;
            margin-top: 30px;
        }

        .btn-submit {
            padding: 12px 40px;
            background: linear-gradient(135deg, var(--success), #2ecc71);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(39, 174, 96, 0.3);
        }

      