    .analysis-container {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0;
    }

    /* Hero Section - Dark Theme */
    .analysis-hero {
        text-align: center;
        padding: 3rem 2rem;
        background: linear-gradient(135deg, rgba(79, 195, 247, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
        border-radius: 0;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(79, 195, 247, 0.3);
    }

    .analysis-hero h1 {
        font-size: 2.5rem;
        background: linear-gradient(135deg, #4FC3F7 0%, #9C27B0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.75rem;
        display: inline-block;
    }

    .analysis-hero p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.7);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Toolbar - Dark Theme */
    .analysis-toolbar {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(79, 195, 247, 0.2);
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }

    .selection-info {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .search-container {
        flex: 1;
        max-width: 400px;
    }

    .search-container input {
        width: 100%;
        padding: 0.75rem 1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(79, 195, 247, 0.3);
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .search-container input:focus {
        outline: none;
        border-color: #4FC3F7;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.1);
    }

    .search-container input::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

    .select-all-container {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .select-all-container input[type="checkbox"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
        accent-color: #4FC3F7;
    }

    .select-all-container label {
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
        cursor: pointer;
        margin: 0;
    }

    .selection-count {
        color: rgba(255, 255, 255, 0.6);
        font-weight: 500;
    }

    .analyze-btn {
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.5);
        border: 2px solid rgba(255, 255, 255, 0.2);
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        cursor: not-allowed;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .analyze-btn:not(:disabled) {
        background: linear-gradient(135deg, #4FC3F7 0%, #9C27B0 100%);
        color: white;
        border: none;
        cursor: pointer;
    }

    .analyze-btn:not(:disabled):hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(79, 195, 247, 0.4);
    }

    /* Content Area - Dark Theme */
    .analysis-content {
        padding: 2rem;
    }

    /* Table Container - Dark Theme */
    .jobs-table-container {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(79, 195, 247, 0.3);
        border-radius: 15px;
        overflow: hidden;
    }

    .jobs-table {
        width: 100%;
        border-collapse: collapse;
    }

    .jobs-table thead {
        background: rgba(79, 195, 247, 0.1);
        border-bottom: 2px solid rgba(79, 195, 247, 0.3);
    }

    .jobs-table th {
        padding: 1rem;
        text-align: left;
        font-weight: 600;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        cursor: pointer;
        user-select: none;
        position: relative;
        transition: all 0.2s ease;
    }

    .jobs-table th:hover {
        color: #4FC3F7;
        background: rgba(79, 195, 247, 0.05);
    }

    .jobs-table th.sortable::after {
        content: ' ⇅';
        opacity: 0.3;
        font-size: 0.9em;
    }

    .jobs-table th.sorted-asc::after {
        content: ' ↑';
        opacity: 1;
        color: #4FC3F7;
    }

    .jobs-table th.sorted-desc::after {
        content: ' ↓';
        opacity: 1;
        color: #4FC3F7;
    }

    .jobs-table td {
        padding: 1.25rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
    }

    .jobs-table tbody tr {
        transition: all 0.2s ease;
    }

    .jobs-table tbody tr:hover {
        background: rgba(79, 195, 247, 0.05);
    }

    .jobs-table tbody tr.selected {
        background: rgba(79, 195, 247, 0.1);
        border-left: 3px solid #4FC3F7;
    }

    .checkbox-cell {
        width: 50px;
        text-align: center;
    }

    .checkbox-cell input[type="checkbox"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
        accent-color: #4FC3F7;
    }

    .job-title {
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        max-width: 300px;
    }

    .company-name {
        color: #4FC3F7;
        font-weight: 500;
        max-width: 200px;
        cursor: pointer;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .company-name:hover {
        color: #9C27B0;
        text-decoration: underline;
    }

    .text-cell {
        max-width: 350px;
        color: rgba(255, 255, 255, 0.7);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .text-cell-wrapper {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .copy-btn {
        background: rgba(79, 195, 247, 0.2);
        border: 1px solid rgba(79, 195, 247, 0.4);
        color: #4FC3F7;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-size: 0.75rem;
        cursor: pointer;
        transition: all 0.2s ease;
        flex-shrink: 0;
        opacity: 0;
    }

    .jobs-table tbody tr:hover .copy-btn {
        opacity: 1;
    }

    .copy-btn:hover {
        background: rgba(79, 195, 247, 0.3);
        border-color: #4FC3F7;
        transform: scale(1.05);
    }

    .copy-btn:active {
        transform: scale(0.95);
    }

    .copy-btn.copied {
        background: rgba(76, 175, 80, 0.3);
        border-color: #4CAF50;
        color: #4CAF50;
    }

    .date-cell {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.875rem;
        white-space: nowrap;
    }

    /* Empty and Loading States - Dark Theme */
    .empty-state {
        text-align: center;
        padding: 4rem 2rem;
        color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.03);
        border: 2px solid rgba(79, 195, 247, 0.3);
        border-radius: 15px;
    }

    .empty-state i {
        font-size: 3rem;
        margin-bottom: 1rem;
        display: block;
    }

    .empty-state h3 {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 0.5rem;
    }

    .loading-state {
        text-align: center;
        padding: 4rem 2rem;
        color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.03);
        border: 2px solid rgba(79, 195, 247, 0.3);
        border-radius: 15px;
    }

    .loading-spinner {
        width: 50px;
        height: 50px;
        border: 4px solid rgba(255, 255, 255, 0.1);
        border-top: 4px solid #4FC3F7;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
        margin: 0 auto 1.5rem;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* Alerts - Dark Theme */
    .alert {
        padding: 1rem 1.25rem;
        margin-bottom: 1.5rem;
        border-radius: 8px;
        font-weight: 500;
        border-left: 4px solid;
        backdrop-filter: blur(10px);
    }

    .alert-success {
        background-color: rgba(76, 175, 80, 0.1);
        border-color: #4CAF50;
        color: #81C784;
    }

    .alert-danger {
        background-color: rgba(244, 67, 54, 0.1);
        border-color: #F44336;
        color: #E57373;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .analysis-hero h1 {
            font-size: 1.75rem;
        }

        .analysis-toolbar {
            flex-direction: column;
            align-items: stretch;
            gap: 1rem;
        }

        .selection-info {
            flex-wrap: wrap;
        }

        .search-container {
            max-width: 100%;
        }

        .analyze-btn {
            width: 100%;
            justify-content: center;
        }

        .jobs-table th,
        .jobs-table td {
            padding: 0.75rem 0.5rem;
            font-size: 0.875rem;
        }

        .analysis-content {
            padding: 1rem;
        }

        .text-cell {
            max-width: 150px;
        }
    }

    /* Loading Overlay */
    .loading-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        z-index: 9999;
        justify-content: center;
        align-items: center;
    }

    .loading-overlay.active {
        display: flex;
    }

    .loading-overlay-content {
        text-align: center;
        padding: 3rem;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(79, 195, 247, 0.3);
        border-radius: 20px;
        max-width: 500px;
    }

    .loading-overlay h2 {
        font-size: 2rem;
        background: linear-gradient(135deg, #4FC3F7 0%, #9C27B0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }

    .loading-overlay p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .loading-overlay .loading-spinner {
        width: 80px;
        height: 80px;
        border: 6px solid rgba(255, 255, 255, 0.1);
        border-top: 6px solid #4FC3F7;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 0 auto 2rem;
    }

    .loading-overlay #countdown {
        font-size: 2rem;
        font-weight: bold;
        color: #4FC3F7;
    }