@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');

.jobadder-careers-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Lato', sans-serif;
}

.jobadder-careers-page * {
    font-family: 'Lato', sans-serif;
}

.jobs-header {
    margin-bottom: 30px;
}

.search-section {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.search-container {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
}

.search-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-box {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.search-input {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    flex: 1;
    transition: all 0.3s ease;
    background: #fafafa;
}

.search-input:focus {
    outline: none;
    border-color: #86600F;
    background: white;
    box-shadow: 0 0 0 3px rgba(134, 96, 15, 0.1);
}

.search-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #D8C9AA 0%, #97731D 50%, #734E07 100%);
    color: #2C2106;
    border: 2px solid #86600F;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 1px rgba(255,255,255,0.5);
    box-shadow: 0 3px 6px rgba(115, 78, 7, 0.3);
}

.search-btn:hover {
    background: linear-gradient(135deg, #E8D9BA 0%, #A7832D 50%, #845E17 100%);
    color: #1A1504;
    border-color: #86600F;
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(115, 78, 7, 0.4);
}

.jobadder-careers-page .jobs-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
    width: 100% !important;
}

.jobadder-careers-page .job-listing-box {
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 25px !important;
    background: white !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 280px !important;
    transition: all 0.3s ease !important;
}

.jobadder-careers-page .job-listing-box:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
}

.jobadder-careers-page .job-header {
    margin-bottom: 15px !important;
}

.jobadder-careers-page .job-title {
    font-size: 22px !important;
    font-weight: 900 !important;
    margin: 0 0 8px 0 !important;
    color: #000 !important;
    line-height: 1.3 !important;
}

.jobadder-careers-page .job-salary {
    font-size: 17px !important;
    font-weight: 700 !important;
    margin: 0 0 6px 0 !important;
    color: #444 !important;
    line-height: 1.4 !important;
}

.jobadder-careers-page .job-date {
    margin-bottom: 18px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

.jobadder-careers-page .job-date span {
    font-size: 14px !important;
    color: #666 !important;
    font-weight: 500 !important;
}

.jobadder-careers-page .job-categories {
    margin-bottom: 20px !important;
}

/* 🎨 METALLIC GRADIENT BULLET POINTS */
.jobadder-careers-page .category-bullet {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D8C9AA 0%, #97731D 50%, #734E07 100%);
    border: 2px solid #86600F;
    box-shadow: 0 2px 4px rgba(115, 78, 7, 0.3);
}

.jobadder-careers-page .category-bullet::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #D8C9AA;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 5px;
    background: radial-gradient(circle at 30% 30%, #F4E8C8, #D8C9AA);
}

.jobadder-careers-page .category-item {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 10px !important;
    font-size: 14px !important;
}

.jobadder-careers-page .category-text {
    color: #555 !important;
    font-weight: 500 !important;
}

.jobadder-careers-page .view-job {
    margin-top: auto !important;
    text-align: center !important;
    padding-top: 15px !important;
}

/* 🎨 METALLIC GRADIENT BUTTONS */
.jobadder-careers-page .view-job-btn {
    display: inline-block !important;
    padding: 12px 30px !important;
    background: linear-gradient(135deg, #D8C9AA 0%, #97731D 50%, #734E07 100%) !important;
    color: #2C2106 !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    border: 2px solid #86600F !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    min-width: 140px !important;
    text-shadow: 0 1px 1px rgba(255,255,255,0.5);
    box-shadow: 0 3px 6px rgba(115, 78, 7, 0.3);
    position: relative;
    overflow: hidden;
}

.jobadder-careers-page .view-job-btn:hover {
    background: linear-gradient(135deg, #E8D9BA 0%, #A7832D 50%, #845E17 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 12px rgba(115, 78, 7, 0.4) !important;
    color: #1A1504 !important;
}

.jobadder-careers-page .view-job-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 4px rgba(115, 78, 7, 0.3) !important;
}

.jobadder-careers-page .no-jobs-message {
    text-align: center !important;
    padding: 50px 20px !important;
    grid-column: 1 / -1 !important;
}

.jobadder-careers-page .no-jobs-message p {
    font-size: 18px !important;
    color: #666 !important;
    margin: 0 !important;
}

.jobadder-careers-page .job-listing-box.hidden {
    display: none !important;
}

/* POPUP STYLES - IMPROVED */
.jobadder-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    box-sizing: border-box;
}

.jobadder-popup[style*="display: block"] {
    display: flex !important;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.popup-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 100000;
    margin: auto;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    z-index: 100001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: #f0f0f0;
}

.popup-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e0e0e0;
    background: #fafafa;
}

.popup-header h2 {
    margin: 0;
    color: #333;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.3;
    padding-right: 50px;
}

.popup-body {
    padding: 25px 30px;
    max-height: 400px;
    overflow-y: auto;
    line-height: 1.6;
}

/* JOB DESCRIPTION STYLING - IMPROVED */
.job-description {
    line-height: 1.6;
    color: #444;
    font-size: 15px;
    white-space: normal;
    word-wrap: break-word;
}

.job-description p {
    margin-bottom: 1em;
    color: #444;
}

.job-description br {
    display: block;
    content: "";
    margin-bottom: 0.5em;
}

.job-description strong {
    font-weight: 700;
    color: #333;
}

.job-description em {
    font-style: italic;
}

.job-description u {
    text-decoration: underline;
}

.job-description ul, 
.job-description ol {
    margin: 1em 0;
    padding-left: 2em;
    color: #444;
}

.job-description li {
    margin-bottom: 0.5em;
    line-height: 1.5;
}

.job-description ul li {
    list-style-type: disc;
}

.job-description ol li {
    list-style-type: decimal;
}

.job-description h1, 
.job-description h2, 
.job-description h3, 
.job-description h4, 
.job-description h5, 
.job-description h6 {
    margin: 1em 0 0.5em 0;
    color: #333;
    font-weight: bold;
}

.job-description h1 { font-size: 1.4em; }
.job-description h2 { font-size: 1.3em; }
.job-description h3 { font-size: 1.2em; }
.job-description h4 { font-size: 1.1em; }
.job-description h5 { font-size: 1em; }
.job-description h6 { font-size: 0.9em; }

.popup-footer {
    padding: 20px 30px;
    border-top: 1px solid #e0e0e0;
    background: #fafafa;
    text-align: center;
}

/* 🎨 METALLIC POPUP APPLY BUTTON */
.popup-apply-btn {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, #D8C9AA 0%, #97731D 50%, #734E07 100%);
    color: #2C2106;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #86600F;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 1px rgba(255,255,255,0.5);
    box-shadow: 0 3px 6px rgba(115, 78, 7, 0.3);
}

.popup-apply-btn:hover {
    background: linear-gradient(135deg, #E8D9BA 0%, #A7832D 50%, #845E17 100%);
    color: #1A1504;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(115, 78, 7, 0.4);
}

body.jobadder-popup-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .jobadder-careers-page .jobs-container {
        grid-template-columns: 1fr !important;
    }
    
    .popup-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .popup-header {
        padding: 20px 20px 15px;
    }
    
    .popup-header h2 {
        font-size: 20px;
        padding-right: 40px;
    }
    
    .popup-body {
        padding: 20px;
        max-height: 300px;
    }
    
    .popup-footer {
        padding: 15px 20px;
    }
}
/* Simple metallic bullets */
.job-meta {
    margin-bottom: 20px !important;
}

.meta-item {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 8px !important;
    font-size: 14px !important;
}

.meta-bullet {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 10px;
    background: linear-gradient(135deg, #D8C9AA 0%, #97731D 50%, #734E07 100%);
    border: 2px solid #86600F;
    flex-shrink: 0;
}
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');

.jobadder-careers-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Lato', sans-serif;
}

.jobadder-careers-page * {
    font-family: 'Lato', sans-serif;
}

/* ... (keep all your existing search and container styles) ... */

/* FIXED BULLET POINTS */
.jobadder-careers-page .job-categories {
    margin-bottom: 20px !important;
}

.jobadder-careers-page .category-item {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 10px !important;
    font-size: 14px !important;
}

.jobadder-careers-page .category-bullet {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #D8C9AA 0%, #97731D 50%, #734E07 100%);
    border: 2px solid #86600F;
    box-shadow: 0 2px 4px rgba(115, 78, 7, 0.3);
    /* REMOVE any content or pseudo-elements that create dots */
}

.jobadder-careers-page .category-bullet::before,
.jobadder-careers-page .category-bullet::after {
    display: none !important; /* Remove any unexpected dots */
}

.jobadder-careers-page .category-text {
    color: #555 !important;
    font-weight: 500 !important;
}

/* ... (keep all your existing button styles) ... */

/* FIXED POPUP DESCRIPTION STYLING */
.job-description {
    line-height: 1.6;
    color: #444;
    font-size: 15px;
    white-space: normal;
    word-wrap: break-word;
}

/* Preserve original formatting from XML */
.job-description * {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

.job-description p {
    margin-bottom: 1em !important;
    line-height: 1.6 !important;
}

.job-description br {
    display: block !important;
    content: "" !important;
    margin-bottom: 0.5em !important;
}

.job-description strong {
    font-weight: 700 !important;
    color: #333 !important;
}

.job-description em {
    font-style: italic !important;
}

.job-description u {
    text-decoration: underline !important;
}

.job-description ul {
    margin: 1em 0 !important;
    padding-left: 2em !important;
    list-style-type: disc !important;
}

.job-description ol {
    margin: 1em 0 !important;
    padding-left: 2em !important;
    list-style-type: decimal !important;
}

.job-description li {
    margin-bottom: 0.5em !important;
    line-height: 1.5 !important;
    display: list-item !important;
}

/* Headings */
.job-description h1, 
.job-description h2, 
.job-description h3, 
.job-description h4, 
.job-description h5, 
.job-description h6 {
    margin: 1em 0 0.5em 0 !important;
    color: #333 !important;
    font-weight: bold !important;
    line-height: 1.3 !important;
}

.job-description h1 { font-size: 1.4em !important; }
.job-description h2 { font-size: 1.3em !important; }
.job-description h3 { font-size: 1.2em !important; }
.job-description h4 { font-size: 1.1em !important; }
.job-description h5 { font-size: 1em !important; }
.job-description h6 { font-size: 0.9em !important; }

/* ... (keep all your existing popup styles) ... */