@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #4f46e5;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6366f1;
}

/* AI Chat Styles */
#ai-chat {
    scrollbar-width: thin;
    scrollbar-color: #4f46e5 #1a1a1a;
}

.ai-error {
    background-color: rgba(239, 68, 68, 0.2) !important;
    border-left: 4px solid #ef4444;
}

.ai-tip {
    background-color: rgba(139, 92, 246, 0.2) !important;
    border-left: 4px solid #8b5cf6;
}
#ai-chat::-webkit-scrollbar {
    width: 6px;
}

#ai-chat::-webkit-scrollbar-thumb {
    background-color: #4f46e5;
    border-radius: 3px;
}

#code-demo {
    font-family: 'Courier New', monospace;
    white-space: pre;
    tab-size: 4;
}
