/* Design Tokens — Chatbot ABHO */
:root {
    /* Colors — ABHO brand */
    --color-primary: #1a56db;
    --color-primary-hover: #1648b8;
    --color-primary-light: #e1effe;
    --color-secondary: #0e9f6e;
    --color-danger: #e02424;
    --color-danger-light: #fde8e8;
    --color-warning: #e3a008;
    --color-warning-light: #fdf6b2;
    --color-success: #0e9f6e;
    --color-success-light: #def7ec;

    /* Neutrals */
    --color-bg: #f9fafb;
    --color-surface: #ffffff;
    --color-border: #e5e7eb;
    --color-text: #111827;
    --color-text-secondary: #6b7280;
    --color-text-muted: #9ca3af;

    /* Sidebar */
    --sidebar-width: 260px;
    --sidebar-bg: #1f2937;
    --sidebar-text: #d1d5db;
    --sidebar-active: var(--color-primary);
    --sidebar-active-bg: rgba(26, 86, 219, 0.15);

    /* Header */
    --header-height: 60px;

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

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;

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