/* /static/css/boutons.css */

#container-boutons {
     display: flex;
    justify-content: flex-start; /* aligner à gauche */
    gap: 40px; /* espace entre les colonnes */
    margin-top: 20px;
    margin-left: 20px; /* petite marge à gauche */
}

.groupe-bouton {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.groupe-bouton button {
    margin-top: 10px;
}

.image-btn {
    border: none;
    background: none;
    padding: 0;
}

.image-btn img {
    width: 100px;
    height: auto;
}

/* Ancien style déplacé ici */
.btn-dynamique {
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin-right: 10px;
}
