/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=JetBrains+Mono:wght@400;700&display=swap');

/* Base Body Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #F8FAFC; /* Slate-50 */
    color: #0F172A; /* Slate-900 */
    scroll-behavior: smooth;
}

/* Monospace font utility */
.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Glassmorphism Panel Effect */
.glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Chart Containers */
.canvas-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 350px;
    margin: 0 auto;
}