/* assets/css/chat.css */
#chat-messages::-webkit-scrollbar {
    width: 6px;
}
#chat-messages::-webkit-scrollbar-track {
    background: transparent;
}
#chat-messages::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
#chat-messages::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

#chat-input::-webkit-scrollbar {
    width: 4px;
}
#chat-input::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.markdown-wrapper p {
    margin-bottom: 0.5rem;
}
.markdown-wrapper p:last-child {
    margin-bottom: 0;
}
.markdown-wrapper ul {
    list-style-type: disc;
    margin-left: 1.25rem;
    margin-bottom: 0.5rem;
}
.markdown-wrapper ol {
    list-style-type: decimal;
    margin-left: 1.25rem;
    margin-bottom: 0.5rem;
}
.markdown-wrapper a {
    color: #4f46e5;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.markdown-wrapper strong {
    font-weight: 700;
}
.markdown-wrapper code {
    background: rgba(0,0,0,0.05);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    font-family: monospace;
    font-size: 0.9em;
}
