/* Style global des boutons du bandeau */
.site-notice .site-notice__actions button {
    border-radius: 9999px !important; /* Style arrondi du thème */
    padding: 8px 24px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
    border: none !important;
}
/* Bouton "Tout accepter" (Orange) */
.site-notice .site-notice__agree {
    background-color: #e36718 !important; /* Orange FF Mobility */
    color: #ffffff !important;
    box-shadow: 0 4px 6px -1px rgba(227, 103, 24, 0.2) !important;
}
.site-notice .site-notice__agree:hover {
    background-color: #c95812 !important;
    transform: translateY(-1px) !important;
}
/* Boutons "Refuser" et "Personnaliser" (Blanc avec bordure) */
.site-notice .site-notice__reject,
.site-notice .site-notice__customize {
    background-color: #ffffff !important;
    color: #575556 !important; /* Gris FF Mobility */
    border: 1px solid #e5e7eb !important;
}
.site-notice .site-notice__reject:hover,
.site-notice .site-notice__customize:hover {
    background-color: #f9fafb !important;
    transform: translateY(-1px) !important;
}
/* Bouton "Enregistrer les choix" (Orange) */
.site-notice .site-notice__save-button {
    background-color: #e36718 !important;
    color: #ffffff !important;
    border-radius: 9999px !important;
    padding: 8px 24px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
    border: none !important;
}
.site-notice .site-notice__save-button:hover {
    background-color: #c95812 !important;
    transform: translateY(-1px) !important;
}
/* Correction mobile : Boutons côte à côte et texte non coupé */
@media (max-width: 767px) {
    .site-notice .site-notice__customize {
        display: none !important;
    }
    .site-notice .site-notice__actions button {
        max-width: none !important;      /* Enlever la limite qui coupe le texte */
        min-width: 120px !important;     /* Largeur minimum plus adaptée */
        text-overflow: clip !important;  /* Ne pas couper avec "..." */
        overflow: visible !important;
        white-space: nowrap !important;
    }
}