        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --card-shadow: 0 10px 40px rgba(0,0,0,0.1);
            --hover-shadow: 0 15px 50px rgba(0,0,0,0.15);
        }

        /* Committee Page Styles */
        .committee-header {
            background: var(--primary-gradient);
            padding: 15px 0;
            position: relative;
            overflow: hidden;
        }
        
        .committee-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        
        .committee-header::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }
        
        .committee-header h2 {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            position: relative;
            z-index: 2;
            animation: fadeInDown 1s ease;
        }
        
        .committee-header p {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Filter Section */
        .filter-section {
            background: white;
            border-radius: 20px;
            padding: 30px;
            margin-top: -40px;
            position: relative;
            z-index: 10;
            box-shadow: var(--card-shadow);
            backdrop-filter: blur(10px);
        }
        
        .filter-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
            display: block;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .filter-label i {
            margin-right: 8px;
            color: #667eea;
        }
        
        .form-select-custom, .form-control-custom {
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }
        
        .form-select-custom:focus, .form-control-custom:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
            outline: none;
        }
        
        /* Committee Cards */
        .committee-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: var(--card-shadow);
            transition: all 0.3s ease;
            animation: fadeInUp 0.6s ease;
            opacity: 0;
            animation-fill-mode: forwards;
        }
        
        .committee-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--hover-shadow);
        }
        
        .committee-card:nth-child(1) { animation-delay: 0.1s; }
        .committee-card:nth-child(2) { animation-delay: 0.2s; }
        .committee-card:nth-child(3) { animation-delay: 0.3s; }
        .committee-card:nth-child(4) { animation-delay: 0.4s; }
        .committee-card:nth-child(5) { animation-delay: 0.5s; }
        
        .card-header-custom {
            background: var(--navy);
            padding: 20px 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .card-header-custom h3 {
            color: white;
            font-size: 1.4rem;
            font-weight: 600;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .card-header-custom h3 i {
            transition: transform 0.3s ease;
        }
        
        .card-header-custom.collapsed h3 i {
            transform: rotate(0deg);
        }
        
        .card-header-custom:not(.collapsed) h3 i {
            transform: rotate(180deg);
        }
        
        .member-count-badge {
            background: rgba(255,255,255,0.2);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-left: 15px;
        }
        
        .table-custom {
            margin: 0;
            border: none;
        }
        
        .table-custom thead th {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            color: #333;
            font-weight: 600;
            padding: 15px;
            border: none;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            
        }
        
        .table-custom tbody tr {
            transition: all 0.3s ease;
        }
        
        .table-custom tbody tr:hover {
            background: linear-gradient(90deg, rgba(102,126,234,0.05) 0%, rgba(118,75,162,0.05) 100%);
            transform: scale(1.01);
        }
        
        .table-custom tbody td {
            padding: 15px;
            vertical-align: middle;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .serial-number {
            font-weight: 700;
            color: #667eea;
            width: 60px;
        }
        
        .role-badge {
            display: inline-block;
            padding: 4px 12px;
            background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #764ba2;
        }
        
        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            background: white;
            border-radius: 20px;
            box-shadow: var(--card-shadow);
        }
        
        .empty-state i {
            font-size: 64px;
            color: #667eea;
            margin-bottom: 20px;
        }
        
        .empty-state h4 {
            font-size: 24px;
            color: #333;
            margin-bottom: 10px;
        }
        
        /* Loading Animation */
        .loading-spinner {
            text-align: center;
            padding: 50px;
            display: none;
        }
        
        .spinner-border-custom {
            width: 50px;
            height: 50px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid #764ba2;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .committee-header h2 {
                font-size: 2rem;
            }
            
            .filter-section {
                padding: 20px;
                margin-top: -30px;
            }
            
            .card-header-custom h3 {
                font-size: 1.1rem;
            }
            
            .table-custom thead th,
            .table-custom tbody td {
                padding: 10px;
                font-size: 0.85rem;
            }
        }
        
        /* Statistics Cards */
        .stat-card {
            background: white;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            box-shadow: var(--card-shadow);
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stat-label {
            color: #666;
            font-size: 0.9rem;
            margin-top: 5px;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }


    /* Summary Bar Styles */
    .summary-bar {
        background: linear-gradient(135deg, #003679 0%, #1a4d8c 100%);
        color: white;
        padding: 15px 25px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-bottom: 20px;
    }
    
    .summary-bar h5 {
        font-size: 1rem;
    }
    
    .summary-bar strong {
        font-size: 1.2rem;
        background: rgba(255,255,255,0.2);
        padding: 4px 12px;
        border-radius: 20px;
        margin-left: 8px;
    }
    
    /* Committee Card Styles */
    .committee-card {
        background: white;
        border-radius: 20px;
        margin-bottom: 25px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .committee-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }
    
    .card-header-custom {
        background: linear-gradient(135deg, #003679 0%, #1a4d8c 100%);
        padding: 18px 25px;
        cursor: pointer;
        transition: all 0.3s;
        border-radius: 20px 20px 0 0;
    }
    
    .card-header-custom:hover {
        background: linear-gradient(135deg, #002255 0%, #0d3b6e 100%);
    }
    
    .card-header-custom h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: white;
        margin: 0;
        display: inline-block;
    }
    
    .committee-stats {
        display: inline-block;
    }
    
    .member-count-badge {
        background: rgba(255,255,255,0.2);
        padding: 6px 16px;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 500;
        color: white;
        backdrop-filter: blur(5px);
    }
    
    /* Table Styles */
    .table-custom {
        width: 100%;
        margin-bottom: 0;
    }
    
    .table-custom thead th {
        background: #f8fafc;
        color: #1e293b;
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 15px 20px;
        border-bottom: 2px solid #e2e8f0;
    }
    
    .table-custom tbody td {
        padding: 14px 20px;
        vertical-align: middle;
        border-bottom: 1px solid #eef2f6;
        font-size: 0.9rem;
    }
    
    .table-custom tbody tr:hover {
        background: #f8fbff;
    }
    
    .serial-number {
        color: #64748b;
        font-weight: 600;
        width: 70px;
    }
    
    .role-badge {
        background: #eef2ff;
        color: #003679;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    
    .table-footer {
        background: #f8fafc;
    }
    
    .table-footer td {
        padding: 12px 20px;
        border-top: 2px solid #e2e8f0;
    }
    
    .footer-stats {
        color: #475569;
        font-size: 0.85rem;
    }
    
    .footer-stats strong {
        color: #003679;
        font-size: 1rem;
        margin-left: 5px;
    }
    
    /* Collapse Animation */
    .collapse {
        transition: all 0.3s ease;
    }
    
    /* Responsive Styles */
    @media (max-width: 768px) {
        .card-header-custom {
            padding: 15px 20px;
        }
        
        .card-header-custom h3 {
            font-size: 1.1rem;
        }
        
        .member-count-badge {
            font-size: 0.75rem;
            padding: 4px 12px;
        }
        
        .summary-bar {
            text-align: center;
        }
        
        .summary-bar .col-md-6.text-md-end {
            text-align: center !important;
            margin-top: 10px;
        }
        
        .committee-stats {
            margin-top: 8px;
        }
        
        /* Mobile table view */
        .table-custom thead {
            display: none;
        }
        
        .table-custom tbody tr {
            display: block;
            margin-bottom: 15px;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            background: white;
        }
        
        .table-custom tbody td {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            border-bottom: 1px dashed #eef2f6;
        }
        
        .table-custom tbody td:last-child {
            border-bottom: none;
        }
        
        .table-custom tbody td::before {
            content: attr(data-label);
            font-weight: 700;
            color: #003679;
            width: 40%;
            font-size: 0.8rem;
        }
        
        .serial-number {
            width: auto;
        }
    }