/* Customisations mineures non couvertes par les classes utilitaires */
html {
    scroll-behavior: smooth;
}

/* Formulaires Symfony : suppression des puces d'erreur par défaut */
form ul {
    list-style-type: none;
    padding: 0;
    margin-top: 0.5rem;
    color: #ef4444; /* text-red-500 */
    font-size: 0.875rem; /* text-sm */
}

/* Animations personnalisées si besoin */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in-custom {
    animation: fadeIn 0.5s ease-in-out;
}