#stats-filter-form {
    max-width: 600px;
    padding: 10px 0;
}

#stats-filter-form label {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 15px;
}

#stats-filter-form .line {
    margin-top: 25px;
    margin-bottom: 25px;
}

#stats-filter-form .line-action {
    margin-top: 25px;
    margin-bottom: 25px;
}

#stats-filter-form .line-filters {
    display: flex;
    flex-wrap: wrap; /* permet de passer à la ligne si trop petit */
    gap: 15px; /* espace entre les labels */
    align-items: center; /* alignement vertical des labels */
    margin-bottom: 25px;
}

#stats-filter-form .line-filters label {
    display: flex;
    flex-direction: column; /* label au dessus, select en dessous */
    flex: 1 1 150px; /* min 150px, flexible */
    max-width: 180px; /* largeur max raisonnable */
    margin-bottom: 0; /* supprime margin-bottom précédent */
}

#stats-filter-form .line-filters select {
    margin-bottom: 0; /* supprime margin-bottom précédent */
    width: 100%; /* prend toute la largeur du label */
    box-sizing: border-box;
}

/* Garder un peu d'espace sous la ligne pour esthétique */
#stats-filter-form .line-filters {
    margin-bottom: 30px;
}


/* Optionnel : bouton un peu plus grand et espacé */
#stats-filter-form .line-submit button {
    padding: 10px 20px;
    font-size: 1.1em;
    cursor: pointer;
}
