        /* ========================================
        WSC REPRESENTATIVES PAGE - PREMIUM STYLES
        Complete Enhanced Design + PERFECT ALIGNMENT
        ======================================== */

        /* ========================================
        PAGE HEADER
        ======================================== */

        .page-header {
            position: relative;
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, var(--color-accent-dark) 100%);
            padding: 140px 0 80px;
            overflow: hidden;
        }

        .page-header-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, 
                rgba(233, 30, 99, 0.2) 0%, 
                rgba(123, 40, 105, 0.4) 50%, 
                rgba(90, 30, 77, 0.6) 100%);
            z-index: 1;
        }

        .page-header .container {
            position: relative;
            z-index: 2;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 25px;
        }

        .breadcrumb-item {
            font-size: 0.95rem;
            font-weight: 500;
        }

        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-item a:hover {
            color: var(--color-secondary);
        }

        .breadcrumb-item.active {
            color: var(--color-white);
        }

        .breadcrumb-item + .breadcrumb-item::before {
            content: ">";
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.2rem;
        }

        .page-title {
            font-family: var(--font-secondary);
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            color: var(--color-white);
            margin-bottom: 20px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .page-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            line-height: 1.6;
        }


        /* ========================================
        STATISTICS SECTION
        ======================================== */

        .stats-section {
            margin-top: -70px;
            position: relative;
            z-index: 10;
            padding: 0 var(--spacing-lg) var(--spacing-3xl);
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--spacing-xl);
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-card {
            background: var(--color-white);
            border-radius: var(--radius-xl);
            padding: var(--spacing-2xl);
            box-shadow: 0 20px 60px rgba(123, 40, 105, 0.15);
            display: flex;
            align-items: center;
            gap: var(--spacing-lg);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(123, 40, 105, 0.08);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, var(--color-accent), var(--color-primary));
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stat-card:hover::before {
            transform: scaleY(1);
            transform-origin: top;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(123, 40, 105, 0.25);
            border-color: var(--color-accent);
        }

        .stat-icon {
            width: 75px;
            height: 75px;
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(123, 40, 105, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stat-card:hover .stat-icon {
            transform: rotate(-10deg) scale(1.1);
        }

        .stat-content {
            flex: 1;
        }

        .stat-number {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            color: var(--color-primary);
            margin: 0;
            font-family: var(--font-secondary);
            line-height: 1;
        }

        .stat-label {
            font-size: var(--font-sm);
            color: var(--color-gray-600);
            margin: 8px 0 0;
            font-weight: 600;
            letter-spacing: 0.3px;
        }


        /* ========================================
        SECTION PADDING
        ======================================== */

        .section-padding {
            padding: 80px 0;
        }


        /* ========================================
        CONTROLS SECTION
        ======================================== */

        .controls-section {
            margin-bottom: var(--spacing-3xl);
            padding: var(--spacing-2xl);
            background: var(--color-white);
            border-radius: var(--radius-xl);
            box-shadow: 0 10px 40px rgba(123, 40, 105, 0.1);
            border: 1px solid rgba(123, 40, 105, 0.05);
        }

        .search-box {
            position: relative;
            width: 100%;
        }

        .search-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--color-gray-500);
            pointer-events: none;
            z-index: 2;
            transition: color 0.3s ease;
        }

        .search-input:focus ~ .search-icon {
            color: var(--color-accent);
        }

        .search-input {
            width: 100%;
            padding: 16px 50px 16px 52px;
            border: 2px solid var(--color-gray-200);
            border-radius: var(--radius-lg);
            font-size: var(--font-base);
            transition: all var(--transition-base);
            background: var(--color-gray-50);
            color: var(--color-black);
            font-weight: 500;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--color-accent);
            box-shadow: 0 0 0 5px rgba(233, 30, 99, 0.1);
            background: var(--color-white);
        }

        .search-input::placeholder {
            color: var(--color-gray-400);
            font-weight: 400;
        }

        .search-clear {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            border: none;
            background: var(--color-gray-300);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition-base);
            color: var(--color-gray-700);
        }

        .search-clear:hover {
            background: var(--color-accent);
            color: var(--color-white);
            transform: translateY(-50%) scale(1.1);
        }

        .custom-select {
            padding: 16px 20px;
            border: 2px solid var(--color-gray-200);
            border-radius: var(--radius-lg);
            font-size: var(--font-base);
            transition: all var(--transition-base);
            cursor: pointer;
            background: var(--color-gray-50);
            color: var(--color-black);
            font-weight: 500;
        }

        .custom-select:focus {
            outline: none;
            border-color: var(--color-accent);
            box-shadow: 0 0 0 5px rgba(233, 30, 99, 0.1);
            background: var(--color-white);
        }


        /* ========================================
        YEAR TABS
        ======================================== */

        .year-tabs {
            position: relative;
            margin-bottom: var(--spacing-3xl);
        }

        .tabs-container {
            display: flex;
            gap: var(--spacing-lg);
            background: var(--color-white);
            padding: var(--spacing-lg);
            border-radius: var(--radius-xl);
            box-shadow: 0 10px 40px rgba(123, 40, 105, 0.12);
            flex-wrap: wrap;
            position: relative;
            border: 1px solid rgba(123, 40, 105, 0.08);
        }

        .tab-btn {
            flex: 1;
            min-width: 180px;
            padding: 20px 30px;
            background: var(--color-gray-50);
            border: 2px solid transparent;
            border-radius: var(--radius-lg);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .tab-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .tab-year {
            font-family: var(--font-secondary);
            font-size: var(--font-lg);
            font-weight: 700;
            color: var(--color-gray-700);
            transition: all var(--transition-base);
            position: relative;
            z-index: 1;
        }

        .tab-badge {
            font-size: var(--font-xs);
            padding: 5px 14px;
            background: var(--color-gray-200);
            color: var(--color-gray-600);
            border-radius: var(--radius-full);
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: all var(--transition-base);
            position: relative;
            z-index: 1;
        }

        .tab-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(123, 40, 105, 0.2);
        }

        .tab-btn.active::before {
            opacity: 1;
        }

        .tab-btn.active {
            border-color: var(--color-accent);
        }

        .tab-btn.active .tab-year {
            color: var(--color-white);
        }

        .tab-btn.active .tab-badge {
            background: rgba(255, 255, 255, 0.3);
            color: var(--color-white);
        }


        /* ========================================
        YEAR CONTENT
        ======================================== */

        .year-content {
            display: none;
            animation: fadeIn 0.6s ease;
        }

        .year-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }


        /* ========================================
        SECTION BLOCKS
        ======================================== */

        .section-block {
            background: var(--color-white);
            border-radius: var(--radius-xl);
            box-shadow: 0 15px 50px rgba(123, 40, 105, 0.12);
            margin-bottom: var(--spacing-2xl);
            overflow: hidden;
            border: 1px solid rgba(123, 40, 105, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .section-block:hover {
            box-shadow: 0 25px 70px rgba(123, 40, 105, 0.18);
            transform: translateY(-5px);
        }

        .ministers-section {
            border-top: 5px solid var(--color-accent);
        }

        .section-header {
            padding: var(--spacing-2xl) var(--spacing-xl);
            background: linear-gradient(135deg, rgba(123, 40, 105, 0.04), rgba(233, 30, 99, 0.04));
            display: flex;
            align-items: center;
            gap: var(--spacing-lg);
            border-bottom: 1px solid rgba(123, 40, 105, 0.08);
        }

        .section-icon {
            width: 60px;
            height: 60px;
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
            transition: transform 0.3s ease;
        }

        .section-block:hover .section-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .shift-1-icon {
            background: linear-gradient(135deg, #4CAF50, #66BB6A);
        }

        .shift-2-icon {
            background: linear-gradient(135deg, #FF9800, #FFA726);
        }

        .section-title {
            font-family: var(--font-secondary);
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            color: var(--color-primary);
            margin: 0;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: var(--font-sm);
            color: var(--color-gray-600);
            margin: 5px 0 0;
            font-weight: 500;
        }


        /* ========================================
        TABLE STYLES - ULTRA PREMIUM + FIXED ALIGNMENT
        ======================================== */

        .table-container {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-lg);
            position: relative;
        }

        .table-container::-webkit-scrollbar {
            height: 8px;
        }

        .table-container::-webkit-scrollbar-track {
            background: var(--color-gray-100);
            border-radius: var(--radius-full);
        }

        .table-container::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
            border-radius: var(--radius-full);
        }

        .table-container::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
        }

        .reps-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            font-size: var(--font-base);
            position: relative;
            table-layout: fixed; /* Critical for alignment */
        }

        /* ========================================
        TABLE HEADER
        ======================================== */

        .reps-table thead {
            background: linear-gradient(135deg, #5A1E4D 0%, #7B2869 50%, #9B3A7D 100%);
            color: var(--color-white);
            position: relative;
        }

        .reps-table thead::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(255, 255, 255, 0.1) 50%, 
                transparent 100%);
            animation: shimmer 3s infinite;
            pointer-events: none;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .reps-table thead th {
            padding: 20px 16px;
            text-align: center;
            font-weight: 700;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            white-space: nowrap;
            position: relative;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            background: transparent;
            z-index: 10;
        }

        .reps-table thead th:last-child {
            border-right: none;
        }

        .reps-table thead th::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
            transition: width 0.4s ease;
        }

        .reps-table thead th:hover::after {
            width: 100%;
        }

        /* ========================================
        TABLE BODY
        ======================================== */

        .reps-table tbody {
            background: var(--color-white);
        }

        .reps-table tbody tr {
            border-bottom: 1px solid rgba(123, 40, 105, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .reps-table tbody tr:nth-child(odd) {
            background: linear-gradient(90deg, 
                rgba(123, 40, 105, 0.02) 0%, 
                transparent 50%);
        }

        .reps-table tbody tr:nth-child(even) {
            background: var(--color-white);
        }

        .reps-table tbody tr::before {
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, 
                rgba(233, 30, 99, 0.1), 
                rgba(233, 30, 99, 0.05), 
                transparent);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            z-index: 1;
        }

        .reps-table tbody tr:hover::before {
            width: 100%;
        }

        .reps-table tbody tr:hover {
            background: linear-gradient(90deg, 
                rgba(233, 30, 99, 0.04) 0%, 
                rgba(233, 30, 99, 0.02) 50%, 
                transparent 100%);
            transform: none; /* Removed translateX */
            box-shadow: -5px 0 15px rgba(233, 30, 99, 0.1);
        }

        .reps-table tbody tr:last-child {
            border-bottom: none;
        }

        .reps-table tbody td {
            padding: 18px 16px;
            color: var(--color-gray-700);
            vertical-align: middle;
            font-weight: 500;
            position: relative;
            z-index: 2;
            border-right: 1px solid rgba(123, 40, 105, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }

        .reps-table tbody td:last-child {
            border-right: none;
        }

        .reps-table tbody tr:hover td {
            color: var(--color-black);
        }

        .reps-table tbody td:first-child {
            font-weight: 700;
        }

        /* Name Column */
        .reps-table tbody td:nth-child(2) strong {
            color: var(--color-primary);
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .reps-table tbody tr:hover td:nth-child(2) strong {
            color: var(--color-accent);
        }

        .reps-table tbody td:nth-child(3) {
            color: var(--color-gray-600);
            font-size: 0.95rem;
        }

        /* ========================================
        COLUMN WIDTHS - CRITICAL FOR ALIGNMENT
        ======================================== */

        .reps-table th:nth-child(1),
        .reps-table td:nth-child(1) { width: 70px; }

        .reps-table th:nth-child(2),
        .reps-table td:nth-child(2) { width: 180px; }

        .reps-table th:nth-child(3),
        .reps-table td:nth-child(3) { width: auto; }

        .reps-table th:nth-child(4),
        .reps-table td:nth-child(4) { width: 130px; }

        .reps-table th:nth-child(5),
        .reps-table td:nth-child(5) { width: 60px; }

        /* ========================================
        BADGES & LABELS
        ======================================== */

        .sno-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 42px;
            height: 42px;
            padding: 0 12px;
            background: linear-gradient(135deg, #F5F5F5 0%, #E0E0E0 100%);
            color: var(--color-gray-800);
            border-radius: 50%;
            font-weight: 800;
            font-size: 0.9rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            margin: 0 auto;
        }

        .sno-badge::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, var(--color-accent), var(--color-primary));
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.4s ease;
            z-index: 0;
        }

        .reps-table tbody tr:hover .sno-badge::before {
            width: 100%;
            height: 100%;
        }

        .reps-table tbody tr:hover .sno-badge {
            color: var(--color-white);
            transform: scale(1.15) rotate(360deg);
            box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
        }

        .sno-badge { z-index: 1; }

        /* Designation Badges */
        .badge-designation {
            display: inline-flex;
            padding: 10px 20px;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            margin: 0 auto;
        }

        .badge-designation::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.5s ease;
            z-index: 0;
        }

        .badge-designation:hover::before {
            width: 200%;
            height: 200%;
        }

        .badge-designation:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
        }

        .badge-designation.president {
            background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
            color: var(--color-white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .badge-designation.vp {
            background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
            color: var(--color-white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .badge-designation.secretary {
            background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
            color: var(--color-white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        /* Shift Badges */
        .badge-shift {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-weight: 800;
            font-size: 0.95rem;
            color: var(--color-white);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.5);
            margin: 0 auto;
        }

        .badge-shift::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            transition: left 0.5s ease;
        }

        .badge-shift:hover::before {
            left: 100%;
        }

        .badge-shift:hover {
            transform: scale(1.2) rotate(360deg);
        }

        .badge-shift.shift-1 {
            background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
        }

        .badge-shift.shift-2 {
            background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
        }

        /* ========================================
        MOBILE CARD VIEW - PERFECT ALIGNMENT
        ======================================== */

        @media (max-width: 768px) {
            .reps-table thead { display: none; }
            .reps-table tbody { display: block; }

            .reps-table tbody tr {
                display: block;
                margin-bottom: 20px;
                border: 2px solid rgba(123, 40, 105, 0.1);
                border-radius: var(--radius-lg);
                box-shadow: 0 5px 20px rgba(123, 40, 105, 0.08);
                overflow: hidden;
                background: var(--color-white);
                position: relative;
            }

            .reps-table tbody tr::after {
                content: '';
                position: absolute;
                top: 0; left: 0;
                width: 100%; height: 4px;
                background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
            }

            .reps-table tbody tr:hover {
                background: var(--color-white);
                box-shadow: 0 10px 30px rgba(123, 40, 105, 0.15);
                transform: translateY(-5px);
                border-color: var(--color-accent);
            }

            .reps-table tbody td {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                padding: 14px 16px;
                border-right: none;
                border-bottom: 1px solid rgba(123, 40, 105, 0.05);
                text-align: right;
                min-height: 56px;
            }

            .reps-table tbody td:last-child { border-bottom: none; }

            .reps-table tbody td::before {
                content: attr(data-label);
                font-weight: 700;
                color: var(--color-primary);
                text-align: left;
                flex: 0 0 90px;
                font-size: 0.8rem;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                margin-right: 12px;
            }

            .reps-table tbody td:first-child {
                justify-content: center;
                background: linear-gradient(90deg, rgba(123, 40, 105, 0.05) 0%, transparent 100%);
                padding: 16px;
            }

            .badge-designation,
            .badge-shift,
            .sno-badge {
                margin: 0;
            }
        }

        /* ========================================
        RESPONSIVE & PRINT
        ======================================== */

        @media (max-width: 576px) {
            .reps-table tbody td::before { flex: 0 0 75 slike; font-size: 0.75rem; }
            .badge-designation { font-size: 0.65rem; padding: 6px 12px; }
            .badge-shift, .sno-badge { width: 32px; height: 32px; font-size: 0.8rem; }
        }

        @media print {
            .page-header, .stats-section, .controls-section, .year-tabs { display: none !important; }
            .year-content { display: block !important; }
            .reps-table { table-layout: fixed; font-size: 10pt; }
            .reps-table thead { background: #333 !important; }
            .reps-table tbody tr:hover { background: transparent !important; transform: none !important; }
            .badge-designation, .badge-shift, .sno-badge { border: 1px solid #000 !important; box-shadow: none !important; }
        }

        /* ========================================
        ACCESSIBILITY
        ======================================== */

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation-duration: 0.01ms !important; transition: none !important; }
            .reps-table tbody tr:hover { transform: none !important; }
        }