:root {
    /* Surface colors */
    --surface-primary: #0A0A0A;
    --surface-sidebar: #0F0F0F;
    --surface-card: #111111;
    --surface-elevated: #1A1A1A;
    --surface-hover: #222222;
    --surface-inverse: #FFFFFF;

    /* Foreground colors */
    --foreground-primary: #FFFFFF;
    --foreground-secondary: #999999;
    --foreground-muted: #666666;
    --foreground-dim: #444444;
    --foreground-inverse: #0A0A0A;

    /* Border colors */
    --border-subtle: #222222;
    --border-light: #333333;

    /* Accent colors */
    --accent-teal: #1D9E75;
    --accent-blue: #4B7BF5;
    --accent-cyan: #06B6D4;
    --accent-purple: #8B5CF6;
    --accent-orange: #F97316;

    /* Status colors */
    --status-success: #22C55E;
    --status-running: #22C55E;
    --status-warning: #F59E0B;
    --status-busy: #F59E0B;
    --status-error: #FF6666;
    --status-info: #4B7BF5;
    --status-idle: #666666;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Sidebar */
    --sidebar-width: 240px;

    /* Fonts */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'IBM Plex Mono', 'Fira Code', monospace;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;

    /* Z-index */
    --z-sidebar: 100;
    --z-header: 200;
    --z-modal: 300;
    --z-toast: 400;
}
