.certashed-filter-wrapper {
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.filter-section {
    margin-bottom: 15px;
}

.filter-section h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.filter-section select,
.filter-section input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.irs--flat {
    width: 100%;
}

.irs--flat .irs-handle {
    background-color: #0073aa;
    border-color: #0073aa;
}

.irs--flat .irs-bar {
    background-color: #0073aa;
}
/* certashed-filter.css */
#certashed-filter-form .filter-section {
    margin-bottom: 20px;
}

#category-filter {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

#category-filter:hover,
#category-filter:focus {
    border-color: #0073aa;
    outline: none;
}

#category-filter option {
    padding: 10px;
}

/* Style for multi-select boxes */
select[multiple] {
    width: 100%;
    max-width: 300px;
    height: 100px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Style for reset button */
#certashed-reset-filters {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#certashed-reset-filters:hover {
    background-color: #005177;
}

/* Loading state */
#certashed-filter-form.loading {
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #category-filter,
    select[multiple] {
        max-width: 100%;
    }
}