/* Custom Scrollbar for Light Theme */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: #a5c3e7;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Glassmorphism & UI Adjustments */
.chat-bubble-user {
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #1e293b;
}

.chat-bubble-ai {
    background-color: #000000;
    border: 1px solid hsl(0, 0%, 0%);
    color: #334155;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Responsive Input Box */
textarea {
    scrollbar-width: none;
}
textarea::-webkit-scrollbar {
    display: none;
}