/* Custom Scrollbar for Chat */
#chat-messages::-webkit-scrollbar {
    width: 6px;
}
#chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
}
#chat-messages::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

html {
    scroll-behavior: smooth;
}

/* Animations that Tailwind might miss in CDN mode if not safely listed */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}
.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}