/* -----------------------------------------------------
   Boutons standards
----------------------------------------------------- */
.btn-primary,
.btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.75rem 1.4rem;
    border-radius: 8px;
    font-size: 1rem;           /* Uniformise la taille */
    font-weight: 600;
    text-decoration: none;     /* Pour <a> */
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

/* Empêche les <button type="submit"> d'utiliser une autre font-size */
button.btn-primary,
button.btn-danger,
button.btn-uniform {
    font-size: 1rem !important;
}

/* -----------------------------------------------------
   Bouton vert (primaire)
----------------------------------------------------- */
.btn-primary {
    background-color: #2e7d32;
    color: white;
}

.btn-primary:hover {
    background-color: #256428;
    color: white;
}

/* -----------------------------------------------------
   Bouton rouge (danger)
----------------------------------------------------- */
.btn-danger {
    background-color: #d32f2f;
    color: white;
}

.btn-danger:hover {
    background-color: #b42626;
    color: white;
}

/* -----------------------------------------------------
   Uniformisation générale des boutons avatar/form
----------------------------------------------------- */
.btn-uniform {
    font-size: 1rem !important;
    font-weight: 600;
}
