
    /* =========================================
       1. LAYOUT STABILITY (Lag Fix)
       ========================================= */
    .main-content {
        padding-top: 85px !important;
        padding-bottom: 60px !important;
        min-height: 100vh;
    }

    /* =========================================
       2. SKELETON LOADER (Smooth Refresh)
       ========================================= */
    .skeleton-box {
        background: #e9ecef;
        border-radius: 12px;
        height: 200px;
        width: 100%;
        animation: pulse 1.5s infinite ease-in-out;
    }

    @keyframes pulse {
        0% {
            opacity: 0.6;
        }
        50% {
            opacity: 1;
        }
        100% {
            opacity: 0.6;
        }
    }

    /* =========================================
       3. COMPONENT STYLES
       ========================================= */
    .job-card {
        background: white;
        border: 1px solid #e0e6f1;
        border-radius: 12px;
        padding: 20px;
        height: 100%;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .job-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(7, 124, 140, 0.1);
        border-color: #b2ebf2;
    }

    .company-logo {
        width: 42px;
        height: 42px;
        object-fit: contain;
        border-radius: 8px;
        border: 1px solid #eee;
        padding: 2px;
        flex-shrink: 0;
    }

    .job-info {
        overflow: hidden;
        flex-grow: 1;
    }

    .job-title {
        font-size: 0.95rem;
        color: #333;
    }

    .company-name {
        color: #6c757d;
    }

    .job-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .withdraw-action-btn {
        background: transparent;
        border: none;
        height: 24px;
        width: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }

    .withdraw-action-btn:hover {
        background-color: rgba(220, 53, 69, 0.1);
        transform: scale(1.1);
    }

    .stats-card {
        background: white;
        border: 1px solid #e0e6f1;
        border-radius: 12px;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    }

    .stats-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(7, 124, 140, 0.08);
    }

    .stats-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    /* Colors */
    .bg-blue-light {
        background: #e3f2fd;
        color: #0d47a1;
    }

    .bg-green-light {
        background: #e8f5e9;
        color: #1b5e20;
    }

    .bg-purple-light {
        background: #f3e5f5;
        color: #4a148c;
    }

    /* Tracker */
    .tracker-wrapper {
        overflow-x: auto;
        padding-bottom: 5px;
        margin-top: 15px;
    }

    .progress-track {
        display: flex;
        justify-content: space-between;
        position: relative;
        min-width: 300px;
    }

    .progress-track::before {
        content: '';
        position: absolute;
        top: 10px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #e9ecef;
        z-index: 0;
    }

    .step-item {
        text-align: center;
        position: relative;
        z-index: 1;
        flex: 1;
        min-width: 60px;
    }

    .step-circle {
        width: 22px;
        height: 22px;
        background: white;
        border: 2px solid #dee2e6;
        border-radius: 50%;
        margin: 0 auto 5px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        transition: all 0.3s ease;
    }

    .step-label {
        font-size: 11px;
        color: #adb5bd;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-bottom: 0;
    }

    /* Active States */
    .step-item.completed .step-circle {
        background: #198754;
        border-color: #198754;
        color: white;
    }

    .step-item.completed .step-label {
        color: #198754;
    }

    .step-item.active .step-circle {
        border-color: #077c8c;
        color: #077c8c;
        box-shadow: 0 0 0 3px #e0f7fa;
    }

    .step-item.active .step-label {
        color: #077c8c;
    }

    /* Filter Controls */
    .filter-controls {
        display: flex;
        gap: 10px;
    }

    .form-select {
        border-radius: 6px;
        font-size: 0.875rem;
    }

    /* Empty State */
    #emptyApplyState {
        padding: 3rem 1rem;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .main-content {
            padding-top: 70px !important;
        }

        .filter-section {
            flex-direction: column;
            align-items: flex-start !important;
            gap: 12px;
        }

        .filter-controls {
            width: 100%;
            display: flex;
            gap: 10px;
        }

        .form-select {
            flex: 1;
        }

        .stats-card {
            padding: 15px;
        }

        .job-card {
            padding: 16px;
        }

        .progress-track {
            min-width: 280px;
        }
    }

    @media (max-width: 576px) {
        .job-meta {
            flex-direction: column;
            gap: 6px;
        }
        
        .progress-track {
            min-width: 260px;
        }
        
        .step-item {
            min-width: 55px;
        }
    }

