/* ============================================
   INDEED JOB IMPORTER - MOBILE FIRST DESIGN
   Version 2.1 - Complete Mobile Redesign
   ============================================ */

/* FORCE HIDE DESKTOP ON MOBILE */
@media (max-width: 768px) {
    .desktop-only,
    .jobfam-wrapper,
    .jobfam-jobs-container,
    .jobs-list-panel,
    .job-details-panel {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    .mobile-only {
        display: block !important;
        visibility: visible !important;
    }
}

/* FORCE HIDE MOBILE ON DESKTOP */
@media (min-width: 769px) {
    .mobile-only,
    .mobile-job-list,
    .mobile-job-card {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    .desktop-only {
        display: block !important;
        visibility: visible !important;
    }
}

/* MOBILE FIRST - DEFAULT MOBILE STYLES */
/* MOBILE JOB CARDS - INDEED STYLE */
.mobile-job-list {
    margin: 20px 0 !important;
    background: #f8f9fa !important;
    min-height: 100vh !important;
    display: block !important;
}

.mobile-job-card {
    background: white !important;
    border: 1px solid #e1e8ed !important;
    border-radius: 12px !important;
    margin: 0 15px 15px 15px !important;
    padding: 20px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    display: block !important;
}

.mobile-job-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    transform: translateY(-2px) !important;
}

/* MOBILE JOB HEADER */
.mobile-job-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    margin-bottom: 15px !important;
}

.mobile-job-badges {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.new-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%) !important;
    color: white !important;
    padding: 4px 12px !important;
    border-radius: 16px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.job-type-badge {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%) !important;
    color: white !important;
    padding: 4px 12px !important;
    border-radius: 16px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.mobile-job-save {
    margin-left: 10px !important;
}

/* HEART ICON STYLING */
.heart-icon,
.mobile-heart,
.heart-icon-btn {
    width: 24px !important;
    height: 24px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    color: #95a5a6 !important;
    fill: none !important;
    stroke: currentColor !important;
}

.heart-icon:hover,
.mobile-heart:hover,
.heart-icon-btn:hover {
    color: #e74c3c !important;
    transform: scale(1.1) !important;
}

.heart-icon.saved,
.mobile-heart.saved,
.heart-icon-btn.saved {
    color: #e74c3c !important;
    fill: #e74c3c !important;
}

/* MOBILE JOB CONTENT */
.mobile-job-content {
    margin-bottom: 20px !important;
}

.mobile-job-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.3 !important;
}

.mobile-job-company {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #34495e !important;
    margin-bottom: 5px !important;
}

.mobile-job-location {
    font-size: 14px !important;
    color: #7f8c8d !important;
    margin-bottom: 8px !important;
}

.mobile-job-location::before {
    content: "📍 " !important;
    margin-right: 4px !important;
}

.mobile-job-salary {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #27ae60 !important;
    margin-bottom: 8px !important;
}

.mobile-job-date {
    font-size: 13px !important;
    color: #95a5a6 !important;
    margin-bottom: 12px !important;
}

.mobile-job-schedule {
    margin-left: 10px !important;
    padding-left: 10px !important;
    border-left: 1px solid #bdc3c7 !important;
}

.mobile-job-description {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #555 !important;
    margin-bottom: 15px !important;
}

.read-more {
    color: #4a90e2 !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    margin-left: 5px !important;
}

.read-more:hover {
    text-decoration: underline !important;
}

/* MOBILE JOB ACTIONS */
.mobile-job-actions {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

.mobile-apply-btn {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%) !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3) !important;
    flex: 1 !important;
    justify-content: center !important;
}

.mobile-apply-btn:hover {
    background: linear-gradient(135deg, #357abd 0%, #2968a3 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4) !important;
    text-decoration: none !important;
    color: white !important;
}

.mobile-source-btn {
    background: white !important;
    color: #666 !important;
    padding: 12px 16px !important;
    border: 2px solid #ddd !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.mobile-source-btn:hover {
    color: #4a90e2 !important;
    border-color: #4a90e2 !important;
    background: #f8f9fa !important;
    text-decoration: none !important;
}

.mobile-save-btn {
    background: white !important;
    color: #666 !important;
    padding: 12px 16px !important;
    border: 2px solid #ddd !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.mobile-save-btn:hover {
    color: #e74c3c !important;
    border-color: #e74c3c !important;
    background: #f8f9fa !important;
}

.mobile-save-btn.saved {
    color: #e74c3c !important;
    border-color: #e74c3c !important;
    background: #fdf2f2 !important;
}

.mobile-save-btn.saved .heart-icon-btn {
    color: #e74c3c !important;
    fill: #e74c3c !important;
}

/* DESKTOP STYLES - APPLIED ONLY ON LARGER SCREENS */
@media (min-width: 769px) {
    .desktop-only {
        display: block !important;
    }

    .mobile-only {
        display: none !important;
    }

    /* Reset and Force Override ALL Possible Conflicts */
    body .jobfam-filters,
    html body .jobfam-filters,
    body .jobfam-jobs-container,
    html body .jobfam-jobs-container,
    body .jobfam-wrapper,
    html body .jobfam-wrapper,
    .jobfam-filters,
    .jobfam-jobs-container,
    .jobfam-wrapper {
        all: initial !important;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        box-sizing: border-box !important;
    }

    /* Force Container Width */
    body .jobfam-jobs-container,
    html body .jobfam-jobs-container,
    .jobfam-jobs-container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        display: block !important;
    }

    /* FORCE HEADER DESIGN */
    body .jobfam-main-header,
    html body .jobfam-main-header,
    .jobfam-main-header {
        background: linear-gradient(135deg, #c8dcf0 0%, #d6e6f5 100%) !important;
        color: #2c3e50 !important;
        padding: 80px 40px !important;
        text-align: center !important;
        margin: 0 !important;
        position: relative !important;
        overflow: hidden !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    body .jobfam-main-header::before,
    html body .jobfam-main-header::before,
    .jobfam-main-header::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(255, 255, 255, 0.1) !important;
        z-index: 1 !important;
    }

    body .jobfam-main-header > *,
    html body .jobfam-main-header > *,
    .jobfam-main-header > * {
        position: relative !important;
        z-index: 2 !important;
    }

    body .jobfam-main-title,
    html body .jobfam-main-title,
    .jobfam-main-title {
        font-size: 42px !important;
        font-weight: 700 !important;
        margin: 0 0 20px 0 !important;
        color: #2c3e50 !important;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
        display: block !important;
        line-height: 1.2 !important;
    }

    body .jobfam-main-subtitle,
    html body .jobfam-main-subtitle,
    .jobfam-main-subtitle {
        font-size: 18px !important;
        font-weight: 400 !important;
        margin: 0 !important;
        color: #5a6c7d !important;
        opacity: 0.9 !important;
        display: block !important;
    }

    /* FORCE FILTER BACKGROUND IMAGE */
    body .jobfam-filters,
    html body .jobfam-filters,
    .jobfam-filters {
        background: url('https://jobfam.com/wp-content/uploads/2023/07/h18-slider-1.jpg') center center / cover no-repeat !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 60px 40px !important;
        margin: 0 0 30px 0 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
        position: relative !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    body .jobfam-filters::before,
    html body .jobfam-filters::before,
    .jobfam-filters::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(255, 255, 255, 0.92) !important;
        z-index: 1 !important;
    }

    body .jobfam-filters > *,
    html body .jobfam-filters > *,
    .jobfam-filters > * {
        position: relative !important;
        z-index: 2 !important;
    }

    /* FORCE FILTERS TITLE */
    body .jobfam-filters-title,
    html body .jobfam-filters-title,
    .jobfam-filters-title {
        font-size: 36px !important;
        font-weight: 700 !important;
        color: #2c3e50 !important;
        margin: 0 0 15px 0 !important;
        text-align: center !important;
        display: block !important;
    }

    body .jobfam-filters-header,
    html body .jobfam-filters-header,
    .jobfam-filters-header {
        text-align: center !important;
        margin-bottom: 50px !important;
    }

    body .jobfam-filters-subtitle,
    html body .jobfam-filters-subtitle,
    .jobfam-filters-subtitle {
        font-size: 18px !important;
        color: #7f8c8d !important;
        margin: 0 !important;
    }

    /* FORCE SEARCH FORM */
    body .jobfam-search-form,
    html body .jobfam-search-form,
    .jobfam-search-form {
        background: rgba(255, 255, 255, 0.95) !important;
        border: 1px solid #e1e8ed !important;
        border-radius: 12px !important;
        padding: 25px !important;
        margin: 0 0 30px 0 !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
        display: block !important;
    }

    /* FORCE HORIZONTAL LAYOUT */
    body .search-form-row,
    html body .search-form-row,
    .search-form-row {
        display: grid !important;
        grid-template-columns: 2fr 1fr 1fr auto !important;
        gap: 15px !important;
        align-items: center !important;
        margin: 0 0 20px 0 !important;
    }

    body .filters-secondary-row,
    html body .filters-secondary-row,
    .filters-secondary-row {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 15px !important;
        margin: 0 0 30px 0 !important;
    }

    body .filter-group,
    html body .filter-group,
    .filter-group {
        display: flex !important;
        flex-direction: column !important;
    }

    body .filter-group label,
    html body .filter-group label,
    .filter-group label {
        font-weight: 600 !important;
        color: #2c3e50 !important;
        margin-bottom: 8px !important;
        font-size: 14px !important;
    }

    body .search-input-group,
    html body .search-input-group,
    .search-input-group {
        position: relative !important;
    }

    body .search-input-group .search-icon,
    html body .search-input-group .search-icon,
    .search-input-group .search-icon {
        position: absolute !important;
        left: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: #7f8c8d !important;
        font-size: 16px !important;
        z-index: 3 !important;
    }

    /* FORCE INPUT STYLING */
    body .search-input-group input,
    html body .search-input-group input,
    .search-input-group input {
        padding: 15px 15px 15px 45px !important;
        border: 2px solid #e1e8ed !important;
        border-radius: 8px !important;
        font-size: 16px !important;
        width: 100% !important;
        background: #ffffff !important;
        box-sizing: border-box !important;
        display: block !important;
        transition: all 0.3s ease !important;
    }

    body .search-input-group input:focus,
    html body .search-input-group input:focus,
    .search-input-group input:focus {
        outline: none !important;
        border-color: #4a90e2 !important;
        box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1) !important;
    }

    body .search-select-group select,
    html body .search-select-group select,
    .search-select-group select,
    body .filter-group select,
    html body .filter-group select,
    .filter-group select {
        padding: 15px 40px 15px 15px !important;
        border: 2px solid #e1e8ed !important;
        border-radius: 8px !important;
        font-size: 16px !important;
        width: 100% !important;
        background: #ffffff !important;
        appearance: none !important;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
        background-position: right 12px center !important;
        background-repeat: no-repeat !important;
        background-size: 16px !important;
        box-sizing: border-box !important;
        display: block !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
    }

    body .search-select-group select:focus,
    html body .search-select-group select:focus,
    .search-select-group select:focus,
    body .filter-group select:focus,
    html body .filter-group select:focus,
    .filter-group select:focus {
        outline: none !important;
        border-color: #4a90e2 !important;
        box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1) !important;
    }

    /* FORCE BUTTON STYLING */
    body .main-search-btn,
    html body .main-search-btn,
    .main-search-btn {
        background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%) !important;
        color: white !important;
        border: none !important;
        padding: 16px 40px !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        font-size: 18px !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        min-width: 150px !important;
        display: inline-block !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3) !important;
    }

    body .main-search-btn:hover,
    html body .main-search-btn:hover,
    .main-search-btn:hover {
        background: linear-gradient(135deg, #357abd 0%, #2968a3 100%) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4) !important;
    }

    /* FORCE EXCLUSIVE BUTTON WITH ICON */
    body .exclusive-jobs-btn,
    html body .exclusive-jobs-btn,
    .exclusive-jobs-btn {
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%) !important;
        color: white !important;
        border: none !important;
        padding: 14px 24px !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 10px !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3) !important;
    }

    body .exclusive-jobs-btn:hover,
    html body .exclusive-jobs-btn:hover,
    .exclusive-jobs-btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4) !important;
        text-decoration: none !important;
        color: white !important;
    }

    body .exclusive-jobs-icon,
    html body .exclusive-jobs-icon,
    .exclusive-jobs-icon {
        width: 24px !important;
        height: 24px !important;
        background: url('https://jobfam.com/wp-content/uploads/2025/05/top-icon-1.png') center center / contain no-repeat !important;
        order: -1 !important;
        margin-right: 8px !important;
        display: inline-block !important;
        flex-shrink: 0 !important;
        transition: transform 0.3s ease !important;
    }

    body .exclusive-jobs-btn:hover .exclusive-jobs-icon,
    html body .exclusive-jobs-btn:hover .exclusive-jobs-icon,
    .exclusive-jobs-btn:hover .exclusive-jobs-icon {
        transform: scale(1.1) !important;
    }

    body .filters-actions,
    html body .filters-actions,
    .filters-actions {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 20px !important;
        margin: 0 !important;
        padding: 0 !important;
        flex-wrap: wrap !important;
    }

    /* FORCE INCREASED HEIGHT - 900PX */
    body .jobfam-jobs-container,
    html body .jobfam-jobs-container,
    .jobfam-jobs-container,
    body .jobfam-wrapper,
    html body .jobfam-wrapper,
    .jobfam-wrapper {
        height: 900px !important;
        min-height: 900px !important;
        max-height: 900px !important;
        overflow: hidden !important;
        margin: 30px 0 0 0 !important;
        padding: 0 !important;
        display: flex !important;
        border: 1px solid #e1e8ed !important;
        border-radius: 12px !important;
        background: #fff !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
    }

    /* FORCE PANEL HEIGHTS */
    body .jobs-list-panel,
    html body .jobs-list-panel,
    .jobs-list-panel {
        width: 40% !important;
        height: 900px !important;
        min-height: 900px !important;
        max-height: 900px !important;
        border-right: 1px solid #e1e8ed !important;
        overflow-y: auto !important;
        background: #f8f9fa !important;
        display: block !important;
        flex-shrink: 0 !important;
    }

    body .job-details-panel,
    html body .job-details-panel,
    .job-details-panel {
        width: 60% !important;
        height: 900px !important;
        min-height: 900px !important;
        max-height: 900px !important;
        overflow-y: auto !important;
        background: #fff !important;
        display: block !important;
        flex-grow: 1 !important;
    }

    body .job-details-content,
    html body .job-details-content,
    .job-details-content {
        padding: 0 !important;
        height: 100% !important;
    }

    /* FORCE JOB LIST ITEMS */
    body .job-list-item,
    html body .job-list-item,
    .job-list-item {
        padding: 20px 24px !important;
        border-bottom: 1px solid #e1e8ed !important;
        cursor: pointer !important;
        background: #fff !important;
        margin: 0 !important;
        display: block !important;
        transition: all 0.3s ease !important;
        position: relative !important;
    }

    body .job-list-item:hover,
    html body .job-list-item:hover,
    .job-list-item:hover {
        background: #f0f8ff !important;
        border-left: 4px solid #4a90e2 !important;
        transform: translateX(4px) !important;
    }

    body .job-list-item.active,
    html body .job-list-item.active,
    .job-list-item.active {
        background: #f0f8ff !important;
        border-left: 4px solid #4a90e2 !important;
        border-bottom-color: #4a90e2 !important;
    }

    body .job-list-header,
    html body .job-list-header,
    .job-list-header {
        margin-bottom: 12px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
    }

    body .job-save-heart,
    html body .job-save-heart,
    .job-save-heart {
        margin-left: 10px !important;
        flex-shrink: 0 !important;
    }

    body .job-list-title,
    html body .job-list-title,
    .job-list-title {
        font-size: 18px !important;
        font-weight: 600 !important;
        color: #2c3e50 !important;
        margin: 0 0 8px 0 !important;
        line-height: 1.4 !important;
        flex: 1 !important;
    }

    body .job-list-meta,
    html body .job-list-meta,
    .job-list-meta {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
        font-size: 14px !important;
        color: #7f8c8d !important;
    }

    body .job-list-meta .company-name,
    html body .job-list-meta .company-name,
    .job-list-meta .company-name {
        font-weight: 600 !important;
        color: #34495e !important;
    }

    body .job-list-meta .job-location::before,
    html body .job-list-meta .job-location::before,
    .job-list-meta .job-location::before {
        content: "📍 " !important;
        margin-right: 4px !important;
    }

    body .job-description-excerpt,
    html body .job-description-excerpt,
    .job-description-excerpt {
        font-size: 13px !important;
        line-height: 1.5 !important;
        color: #666 !important;
        margin-bottom: 12px !important;
    }

    body .job-list-footer,
    html body .job-list-footer,
    .job-list-footer {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        font-size: 13px !important;
        margin-top: 8px !important;
    }

    body .posted-date,
    html body .posted-date,
    .posted-date {
        color: #95a5a6 !important;
        font-style: italic !important;
    }

    /* FORCE JOBS COUNT */
    body .jobs-count,
    html body .jobs-count,
    .jobs-count {
        padding: 20px 24px !important;
        background: #f8f9fa !important;
        border-bottom: 1px solid #e1e8ed !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        color: #2c3e50 !important;
        text-align: left !important;
        margin: 0 !important;
        display: block !important;
    }

    /* FORCE SMALLER FONT IN DESCRIPTION */
    body .job-description-content,
    html body .job-description-content,
    .job-description-content,
    body .job-description-content p,
    html body .job-description-content p,
    .job-description-content p,
    body .job-description-content li,
    html body .job-description-content li,
    .job-description-content li {
        font-size: 15px !important;
        line-height: 1.6 !important;
        color: #555 !important;
    }

    body .job-description,
    html body .job-description,
    .job-description {
        padding: 40px !important;
    }

    body .job-description h2,
    html body .job-description h2,
    .job-description h2 {
        font-size: 26px !important;
        font-weight: 700 !important;
        color: #2c3e50 !important;
        margin: 0 0 24px 0 !important;
    }

    /* FORCE JOB DETAILS HEADER */
    body .job-detail-header,
    html body .job-detail-header,
    .job-detail-header {
        padding: 40px !important;
        border-bottom: 1px solid #e1e8ed !important;
        background: #f8f9fa !important;
    }

    body .job-detail-title,
    html body .job-detail-title,
    .job-detail-title {
        font-size: 32px !important;
        font-weight: 700 !important;
        color: #2c3e50 !important;
        margin: 0 0 20px 0 !important;
        line-height: 1.3 !important;
    }

    body .job-detail-meta,
    html body .job-detail-meta,
    .job-detail-meta {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 24px !important;
        margin-bottom: 20px !important;
        font-size: 16px !important;
        color: #7f8c8d !important;
    }

    body .job-detail-meta .company-name,
    html body .job-detail-meta .company-name,
    .job-detail-meta .company-name {
        font-weight: 600 !important;
        color: #34495e !important;
        font-size: 20px !important;
    }

    /* FORCE JOB OVERVIEW */
    body .job-overview,
    html body .job-overview,
    .job-overview {
        padding: 40px !important;
        background: #f8f9fa !important;
        border-bottom: 1px solid #e1e8ed !important;
    }

    body .job-overview h2,
    html body .job-overview h2,
    .job-overview h2 {
        font-size: 26px !important;
        font-weight: 700 !important;
        color: #2c3e50 !important;
        margin: 0 0 24px 0 !important;
    }

    body .job-overview-items,
    html body .job-overview-items,
    .job-overview-items {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 20px !important;
    }

    body .overview-item,
    html body .overview-item,
    .overview-item {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 16px 20px !important;
        background: white !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
        border-left: 4px solid #4a90e2 !important;
    }

    body .overview-label,
    html body .overview-label,
    .overview-label {
        font-weight: 600 !important;
        color: #7f8c8d !important;
        font-size: 14px !important;
    }

    body .overview-value,
    html body .overview-value,
    .overview-value {
        font-weight: 600 !important;
        color: #2c3e50 !important;
        font-size: 16px !important;
    }

    /* FORCE JOB ACTIONS */
    body .job-actions,
    html body .job-actions,
    .job-actions {
        padding: 40px !important;
        border-top: 1px solid #e1e8ed !important;
        background: #f8f9fa !important;
        display: flex !important;
        gap: 20px !important;
        align-items: center !important;
        position: sticky !important;
        bottom: 0 !important;
    }

    body .apply-now-btn,
    html body .apply-now-btn,
    .apply-now-btn {
        background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%) !important;
        color: white !important;
        padding: 16px 32px !important;
        border-radius: 8px !important;
        text-decoration: none !important;
        font-weight: 700 !important;
        font-size: 16px !important;
        transition: all 0.3s ease !important;
        border: none !important;
        cursor: pointer !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3) !important;
    }

    body .apply-now-btn:hover,
    html body .apply-now-btn:hover,
    .apply-now-btn:hover {
        background: linear-gradient(135deg, #357abd 0%, #2968a3 100%) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4) !important;
        text-decoration: none !important;
        color: white !important;
    }

    body .apply-now-btn::after,
    html body .apply-now-btn::after,
    .apply-now-btn::after {
        content: "→" !important;
        font-size: 18px !important;
        transition: transform 0.3s ease !important;
    }

    body .apply-now-btn:hover::after,
    html body .apply-now-btn:hover::after,
    .apply-now-btn:hover::after {
        transform: translateX(3px) !important;
    }

    body .source-link,
    html body .source-link,
    .source-link {
        color: #666 !important;
        text-decoration: none !important;
        font-size: 14px !important;
        padding: 12px 20px !important;
        border: 2px solid #ddd !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        background: white !important;
        font-weight: 500 !important;
    }

    body .source-link:hover,
    html body .source-link:hover,
    .source-link:hover {
        color: #4a90e2 !important;
        border-color: #4a90e2 !important;
        background: #f8f9fa !important;
        text-decoration: none !important;
    }

    /* FORCE LOADING STATES */
    body .no-job-selected,
    html body .no-job-selected,
    .no-job-selected,
    body .loading-details,
    html body .loading-details,
    .loading-details,
    body .error-details,
    html body .error-details,
    .error-details {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
        color: #7f8c8d !important;
        font-style: italic !important;
        text-align: center !important;
        padding: 40px !important;
        font-size: 16px !important;
    }

    body .loading-details::before,
    html body .loading-details::before,
    .loading-details::before {
        content: "" !important;
        display: inline-block !important;
        width: 20px !important;
        height: 20px !important;
        border: 3px solid #f3f3f3 !important;
        border-top: 3px solid #4a90e2 !important;
        border-radius: 50% !important;
        animation: spin 1s linear infinite !important;
        margin-right: 10px !important;
    }

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

    body .jobs-list-panel.loading,
    html body .jobs-list-panel.loading,
    .jobs-list-panel.loading {
        opacity: 0.6 !important;
        pointer-events: none !important;
        position: relative !important;
    }

    body .jobs-list-panel.loading::after,
    html body .jobs-list-panel.loading::after,
    .jobs-list-panel.loading::after {
        content: "" !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 35px !important;
        height: 35px !important;
        border: 4px solid #f3f3f3 !important;
        border-top: 4px solid #4a90e2 !important;
        border-radius: 50% !important;
        animation: spin 1s linear infinite !important;
        z-index: 10 !important;
    }

    /* FORCE NO JOBS FOUND */
    body .no-jobs-found,
    html body .no-jobs-found,
    .no-jobs-found {
        text-align: center !important;
        padding: 60px 40px !important;
        color: #7f8c8d !important;
        background: #f8f9fa !important;
        border: 1px solid #e1e8ed !important;
        border-radius: 8px !important;
        font-style: italic !important;
        font-size: 16px !important;
        margin-top: 30px !important;
    }
}

/* MOBILE RESPONSIVE FILTERS */
@media (max-width: 768px) {
    body .jobfam-main-header,
    html body .jobfam-main-header,
    .jobfam-main-header {
        padding: 40px 20px !important;
    }
    
    body .jobfam-main-title,
    html body .jobfam-main-title,
    .jobfam-main-title {
        font-size: 28px !important;
    }
    
    body .jobfam-filters,
    html body .jobfam-filters,
    .jobfam-filters {
        padding: 30px 20px !important;
    }
    
    body .jobfam-filters-title,
    html body .jobfam-filters-title,
    .jobfam-filters-title {
        font-size: 24px !important;
    }
    
    body .search-form-row,
    html body .search-form-row,
    .search-form-row {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    body .filters-secondary-row,
    html body .filters-secondary-row,
    .filters-secondary-row {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    body .filters-actions,
    html body .filters-actions,
    .filters-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    body .main-search-btn,
    html body .main-search-btn,
    .main-search-btn,
    body .exclusive-jobs-btn,
    html body .exclusive-jobs-btn,
    .exclusive-jobs-btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
    
    body .exclusive-jobs-icon,
    html body .exclusive-jobs-icon,
    .exclusive-jobs-icon {
        order: -1 !important;
        margin-right: 8px !important;
    }
}