/* Sensei.exe — custom styles on top of Tailwind CDN */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #2a2a32;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3a3a45;
}

/* Subtle gradient backdrop on the chat area */
#messages {
    background-image:
        radial-gradient(ellipse at top, rgba(212, 166, 74, 0.04), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(212, 166, 74, 0.02), transparent 60%);
}

/* Smooth fade-in for new messages */
#messages > div {
    animation: fadeIn 0.25s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}
