.year-selector {
            background: #f8f9fa;
            padding: 20px 0;
            border-bottom: 3px solid #1e3c72;
        }
        
        .year-btn {
            margin: 5px;
            padding: 10px 25px;
            border: 2px solid #1e3c72;
            background: white;
            color: #1e3c72;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .year-btn:hover, .year-btn.active {
            background: #1e3c72;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .governing-body-section {
            padding: 60px 0;
            background: #fff;
        }
        
        .table-responsive {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        table {
            margin: 0;
        }
        
        table thead {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
        }
        
        table thead th {
            padding: 20px 15px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 0.5px;
            border: none;
        }
        
        table tbody tr {
            border-bottom: 1px solid #e9ecef;
            transition: all 0.3s;
        }
        
        table tbody tr:hover {
            background: #f8f9fa;
            transform: scale(1.01);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        table tbody td {
            padding: 18px 15px;
            vertical-align: middle;
            color: #333;
        }
        
        .designation-badge {
            display: inline-block;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }
        
        .designation-president {
            background: #ffd700;
            color: #000;
        }
        
        .designation-secretary {
            background: #28a745;
            color: white;
        }
        
        .designation-member {
            background: #6c757d;
            color: white;
        }
        
        .category-badge {
            display: inline-block;
            padding: 4px 12px;
            background: #e7f3ff;
            color: #007bff;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .download-section {
            background: #fff3cd;
            border: 2px solid #ffc107;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            text-align: center;
        }
        
        .download-btn {
            background: #dc3545;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
        }
        
        .download-btn:hover {
            background: #c82333;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(220,53,69,0.3);
        }
        
        .no-data {
            text-align: center;
            padding: 60px 20px;
            color: #6c757d;
        }
        
        .no-data i {
            font-size: 64px;
            margin-bottom: 20px;
            opacity: 0.5;
        }
