/* Custom styles */
body {
    font-family: 'Inter', sans-serif;
}

/* Smooth scroll for chat messages */
#chat-messages {
    scroll-behavior: smooth;
}

/* Animation for new messages */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#chat-messages > div {
    animation: fadeIn 0.3s ease-out;
}
/* History dropdown styles */
#history-dropdown {
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#history-list {
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

#history-list::-webkit-scrollbar {
    width: 6px;
}

#history-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#history-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

/* Custom scrollbar for chat */
#chat-messages::-webkit-scrollbar {
width: 8px;
}

#chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#chat-messages::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

#chat-messages::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}