/**
 * EzeTree CSS Variables
 * Global design tokens for consistent theming
 */

:root {
    /* Primary Colors */
    --primary: #2c5282;
    --primary-light: #4299e1;
    --primary-dark: #1a365d;

    /* Secondary/Accent Colors */
    --secondary: #c9a55c;
    --secondary-light: #d4b06a;

    /* Background Colors (Dark Theme) */
    --bg-dark: #1a202c;
    --bg-medium: #2d3748;
    --bg-light: #4a5568;

    /* Text Colors */
    --text-primary: #f7fafc;
    --text-secondary: #a0aec0;
    --text-muted: #718096;

    /* Gender Colors */
    --male: #3182ce;
    --female: #d53f8c;
    --unknown: #718096;

    /* Status Colors */
    --success: #48bb78;
    --warning: #ed8936;
    --danger: #fc8181;
    --info: #4299e1;

    /* UI Elements */
    --border: #4a5568;
    --border-light: #718096;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);

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

    /* Transitions */
    --transition: all 0.2s ease;
    --transition-fast: all 0.1s ease;
    --transition-slow: all 0.3s ease;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;

    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal-backdrop: 300;
    --z-modal: 400;
    --z-toast: 500;
}
