.mon-bouton {
    padding: 12px 24px;
    color: white; /* Assure que le texte est toujours blanc */
    background-color: var(--systemoun-strong-color, #19744C); /* Couleur par défaut du thème */
    border-radius: 50px;
    display: block;
    text-decoration: none;
    min-width: 200px;
    width: fit-content;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;

    &:hover {
        background-color: var(--systemoun-strong-color-hover, #135A3B); /* Couleur au survol */
        transform: translateY(-3px);
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        text-decoration: none;
        color: white; /* Maintient le texte blanc au survol */
    }

    &:active {
        background-color: var(--systemoun-strong-color-active, #0d3f28);
        transform: translateY(0);
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }

    &:focus {
        color: white; /* Maintient le texte blanc lorsque le bouton est focalisé */
        outline: none; /* Supprime le contour par défaut si nécessaire */
        box-shadow: 0 0 0 3px rgba(25, 116, 76, 0.5); /* Ajoute un contour personnalisé pour l'accessibilité */
    }
&.left {
    margin-right: auto;
}

&.center {
    margin: auto;
}

&.right {
    margin-left: auto;
}}

