
/* Défilement fluide pour la zone de chat */
html {
    scroll-behavior: smooth;
}
/* Barre de défilement personnalisée */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}
/* Animation pour les nouveaux messages */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Appliquer l'animation aux messages */
.flex.space-x-2, .flex.justify-end {
    animation: fadeIn 0.3s ease-out;
}