.filter-box {
    /*background: linear-gradient(270deg, #430255 0%, #051629 100%);*/
    padding: 27px 29px;
    border-radius: 20px;
    color: #fff;
    background: #0e267c;
}

/* TITLE */
.filter-title {
    font-weight: 600;
    cursor: pointer;
    margin: 20px 0px;
    position: relative;
    padding-right: 20px;
     transition:0.3;
}

.filter-title::after {
    content: url('/wp-content/uploads/2026/03/down-arrow-2.png');
    position: absolute;
    right: 0;
}


.filter-group.active .filter-title::after {
    content: url('/wp-content/uploads/2026/03/upload-1.png');
    
}

/* SCROLL AREA */
.function-filter .filter-options {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 15px;
}

/* SCROLLBAR WIDTH */
.filter-options::-webkit-scrollbar {
    width: 3px;
}

.filter-options::-webkit-scrollbar-track {
    background: #D9D9D9;
    margin: 6px 0;
}

.filter-options::-webkit-scrollbar-thumb {
    background: #00c29f;
    border-radius: 10px;
}



/* OPTIONS */
.filter-options {
    display: none;
    margin-top: 12px;
}

.filter-group.active .filter-options {
    display: block;
}

/* LABEL (TEXT LEFT - CHECKBOX RIGHT) */
.filter-box label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -1.04px;
}

/* TEXT */
.filter-box label span {
    flex: 1;
}

/* CUSTOM CHECKBOX */
.filter-box input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #fff;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    position: relative;
}

/* CHECK MARK */
.filter-box input[type="checkbox"]::after {
    content: "✔";
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.2s ease;
}

/* WHEN CHECKED */
.filter-box input[type="checkbox"]:checked::after {
    transform: translate(-50%, -50%) scale(1);
}

/* HOVER EFFECT */
.filter-box label:hover {
    opacity: 0.85;
}

/* OPTIONAL DIVIDER */
.filter-group {
border-bottom: 1px solid;
/*border-image: linear-gradient(90deg, #190B6C 0%, #40104F 100%);*/
border-image-slice: 1;
padding-bottom: 10px;
}

.filter-head{
margin-bottom:30px;
padding-bottom:20px;
font-weight:600;
border-bottom: 1px solid;
/*border-image: linear-gradient(90deg, #190B6C 0%, #40104F 100%);*/
border-image-slice: 1;
}

.clear-filter{
opacity:.7;
cursor:pointer;
}


/*#clear-filters {*/
/*    margin-top: 20px;*/
/*    width: 100%;*/
/*    padding: 10px;*/
/*    border-radius: 10px;*/
/*    border: none;*/
/*}*/

/* JOB LIST */
#job-results {
    background: #fff;
    border-radius: 20px;
    padding: 29px 28px;
}

#job-results.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px; /* gives top & bottom space */
    text-align: center;
    font-size: 16px;
}

.job-results-scroll {
    max-height: 840px;
    overflow-y: auto;
    padding-right: 15px;
}

/* SCROLLBAR WIDTH */
.job-results-scroll::-webkit-scrollbar {
    width: 3px;
}

.job-results-scroll::-webkit-scrollbar-track {
    background: #D9D9D9;
    margin: 6px 0;
}

.job-results-scroll::-webkit-scrollbar-thumb {
    background: #00c29f;
    border-radius: 10px;
}


.no-jobs{
     display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px; /* gives top & bottom space */
    text-align: center;
    font-size: 16px;
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-card:last-child {
    border-bottom: 0px;
}

.job-card h4 {
    letter-spacing: -1.04px;
    margin: 0px 0px;
    font-size: 16px !important;
    font-weight: 500;
    color: #000 !important;
    line-height: 42px;
    font-family: 'Inter' !important;
}


.job-card a::after {
    content: "→";
    padding-left: 5px;
}