<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* filters.css */

/* Conteneur des filtres */
#filters {
    margin-bottom: 40px;
    text-align: center;
}

#filter-form {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.filter-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

.filter-group select {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.apply-filter-btn {
    padding: 10px 20px;
}
</pre></body></html>