/* Styles pour le filtre des réalisations */
.filtre-realisations {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.form-filtre-realisations {
    width: 100%;
}

.grid-section {
    display: grid;
    grid-template-columns: var(--cols-prop, 1fr);
    gap: 20px;
    align-items: flex-end;
}

.filtre-item {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
}

.form-champ {
    position: relative;
}

.select-filtre {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23333' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.filtre-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.filtre-actions .wp-block-button__link {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    background-color: #e0e0e0;
}

.no-results {
    padding: 30px;
    text-align: center;
    font-size: 18px;
    color: #666;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-section {
        grid-template-columns: 1fr;
    }
    
    .filtre-actions {
        justify-content: center;
    }
}
