/**
 * Folks Integration — Filters & Search
 */

/* Container */
.folks-jobs-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Filters */
.folks-filters {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.folks-search {
    margin-bottom: 15px;
}

.folks-search input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.folks-search input:focus {
    outline: none;
    border-color: #009D77;
    box-shadow: 0 0 0 3px rgba(0, 157, 119, 0.1);
}

.folks-filter-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.folks-filter-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 15px;
    background: white;
    cursor: pointer;
}

.folks-filter-select:focus {
    outline: none;
    border-color: #009D77;
}
