/* Style des boutons principaux (Suivant, Commander) */
.fc-wrapper .button,
.fc-wrapper button[type="submit"] {
    background-color: var(--primary-accent) !important;
    color: var(--text-on-accent) !important;
    border: none !important;
    border-radius: var(--radius-button) !important;
    padding: 14px 24px !important;
    font-weight: bold !important;
    text-transform: none !important;
    box-shadow: var(--shadow-ui) !important;
    transition: var(--transition-fast) !important;
    line-height: 1.2 !important;
}

/* Effet au survol */
.fc-wrapper .button:hover,
.fc-wrapper button[type="submit"]:hover {
    filter: brightness(1.1);
    box-shadow: var(--shadow-floating) !important;
    transform: translateY(-2px);
}

/* Style pour les liens "Changement" / "Modifier" */
.fc-step__substep-edit,
a.fc-contact-login__action,
.expansible-section__toggle-plus {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.fc-step__substep-edit:hover,
a.fc-contact-login__action:hover,
.expansible-section__toggle-plus:hover {
    color: var(--text-title);
    text-decoration: underline;
}