/* Custom scrollbar from index.html */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.chat-scroll::-webkit-scrollbar {
    width: 6px;
}
.chat-scroll::-webkit-scrollbar-track {
    background: transparent; 
}
.chat-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 3px;
}
.dark .chat-scroll::-webkit-scrollbar-thumb {
    background: #475569; 
}
.chat-scroll::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

/* Additional utilities if needed */
body {
    margin: 0;
    padding: 0;
}
