@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.mono-font {
    font-family: 'JetBrains Mono', monospace;
}

.chart-control {
    width: 1.75rem;
    height: 1.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    color: #64748b;
    background: #f8fafc;
    transition: background-color 150ms, color 150ms;
}

.chart-control:hover {
    color: #1d4ed8;
    background: #eff6ff;
}

.dark .chart-control {
    border-color: #475569;
    color: #94a3b8;
    background: #1e293b;
}

.dark .chart-control:hover {
    color: #bfdbfe;
    background: #1e3a8a;
}

/* Custom scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.dark ::-webkit-scrollbar-track {
    background: #0f172a;
}

.dark ::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 3px;
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.chart-symbol-select {
    min-width: 5.5rem;
    height: 1.75rem;
    padding: 0 0.35rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    color: #334155;
    background: #f8fafc;
    font-size: 0.75rem;
}

.dark .chart-symbol-select {
    border-color: #475569;
    color: #e2e8f0;
    background: #1e293b;
}