/* Styles partagés pour les filtres des pages concurrents */
.filter-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.filter-dropdown {
    position: relative;
}
.filter-dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 250px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    border-radius: 4px;
    z-index: 1000;
    padding: 10px;
}
.filter-dropdown-content.show {
    display: block;
}
.filter-checkbox-item {
    padding: 5px 0;
    display: flex;
    align-items: center;
}
.filter-checkbox-item input[type="checkbox"] {
    margin-right: 8px;
}
.filter-checkbox-item label {
    margin: 0;
    cursor: pointer;
    flex: 1;
}
.filter-button {
    width: 100%;
    text-align: left;
    background: white;
    border: 1px solid #ced4da;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    cursor: pointer;
}
.filter-button:hover {
    background-color: #f8f9fa;
}
.filter-button::after {
    content: '\25BC';
    float: right;
    font-size: 0.8em;
}
.selected-count {
    color: #007bff;
    font-weight: 600;
}
