/* src/ui/styles/_tokens.css */
:root {
    /* Colors - Brand & UI */
    --color-sidebar: #0f172a;
    --color-header: #0f172a;
    --color-workspace: #ffffff;
    --color-bg: #f8fafc;
    
    /* Colors - Action */
    --color-primary: #1d4ed8;
    --color-primary-hover: #1e40af;
    --color-success: #10b981;
    --color-success-hover: #059669;
    --color-warning: #f59e0b;
    --color-warning-hover: #d97706;
    --color-danger: #ef4444;
    --color-danger-hover: #dc2626;
    --color-muted: #64748b;
    
    /* Colors - Text */
    --color-text-main: #0f172a;
    --color-text-muted: #64748b;
    --color-text-light: #ffffff;
    
    /* Colors - Borders */
    --color-border: #e2e8f0;
    
    /* Typography */
    --font-main: 'Inter', 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    
    /* Radii */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    /* Layout */
    --sidebar-width: 260px;
    --sidebar-width-collapsed: 72px;
    --header-height: 64px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background-color: var(--color-bg);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}
