/* 🎨 Style général du formulaire */
.recherche-form {
    display: grid;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
    padding: 50px;
    overflow: hidden;
    grid-template-columns: 30% 30% 30%;
}

/* 📌 Style des champs */
.filtre-container input,
.filtre-container select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    width: 180px;
    background: white;
}

/* 📱 Adaptation mobile */
@media (max-width: 768px) {
    .recherche-form {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    
    .filtre-container input,
    .filtre-container select {
        width: 100%;
    }
    
    .page_title {
        padding-top: 25%;
        margin: 0 10px;
    }
}

/* 🎯 Bouton de filtre */
.filtre-container button {
    padding: 12px 20px;
    background-color: #ed4018;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.filtre-container button:hover {
    background-color: #c5300c;
}