/* Design tokens - single source of truth for all variables */

/* Dark mode (default) */
:root {
    color-scheme: light dark;

    /* Colors */
    --primary-color: #42a5f5;
    --primary-dark: #1e88e5;
    --secondary-color: #9e9e9e;
    --success-color: #66bb6a;
    --error-color: #ef5350;
    --warning-color: #ffa726;
    --background: #121212;
    --surface: #1e1e1e;
    --surface-elevated: #2d2d2d;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --border-color: #333333;

    /* Layout */
    --sidebar-width: 340px;
    --right-panel-width: 260px;
    --header-height: 60px;

    /* Spacing */
    --spacing-2xs: 0.125rem;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 0.75rem;
    --spacing-base: 1rem;
    --spacing-lg: 1.25rem;
    --spacing-xl: 1.5rem;
    --spacing-2xl: 2rem;
    --spacing-3xl: 2.5rem;

    /* Typography */
    --font-size-2xs: 0.65rem;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.75rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.3);

    /* Transitions */
    --transition-fast: 100ms ease-in-out;
    --transition-base: 200ms ease-out;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-pill: 10px;
    --radius-full: 50%;
}

/* Light mode */
[data-theme="light"] {
    --primary-color: #1976D2;
    --primary-dark: #1565C0;
    --secondary-color: #757575;
    --success-color: #4CAF50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --background: #f5f5f5;
    --surface: #ffffff;
    --surface-elevated: #ffffff;
    --text-primary: #212121;
    --text-secondary: #757575;
    --border-color: #e0e0e0;
    --toggle-bg: #bbb;
}
