/* קונטיינר ראשי */
.job-filter {
    width: 340px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px; 
}

.filter-title {
    color: #1A2238;
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    font-weight: 500;
}

/* כפתור Clear */
.clear-filters {
    background: none;
    border: none;
    color: #B8B9B9;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
}

/* קו בין הסקשנים */
.filter-section {
    border-bottom: 1px solid #EDEDEE;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* כפתור אקורדיון */
.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    color: #1A2238;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.accordion-trigger:hover {
    color: #0058AF;
}

/* החץ עצמו */
.accordion-trigger svg {
    transition: transform 0.3s ease;
}

/* סיבוב חץ כשהאקורדיון פתוח */
.accordion-trigger[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

/* קופסאות סימון */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    color: #1A2238;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid #EDEDEE;
    border-radius: 4px;
    cursor: pointer;
    margin: 0;
}

/* חיפוש מיקום */
.location-search-wrapper {
    position: relative;
}

.location-search {
    width: 100%;
    background: #F8F8FB;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    color: #9197A6;
}

/* תגיות מיקום שנבחרו */
.selected-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.location-pill {
    background: #F5F5F5;
    border-radius: 16px;
    padding: 4px 12px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* כפתור מחיקת מיקום */
.location-pill button {
    background: none;
    border: none;
    cursor: pointer;
    color: #606977;
    padding: 0;
}

.accordion {
    padding: 0;
}

.accordion-content {
    padding: 0;
}


