﻿:root {
    --primary: #003ec5;
    --primary-color: #003ec5;
    --primary-dark: #002aa3;
    --primary-light: #e6f0ff;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --text-subtle: #9ca3af;
    --background: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --bg-hover: #f3f4f6;
    --input-bg: #ffffff;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --border-focus: #003ec5;
    --shadow-color: rgba(0, 62, 197, 0.05);
    --card-shadow: 0 1px 3px rgba(0, 62, 197, 0.08);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.08);
    --shadow-primary: 0 4px 12px rgba(0, 62, 197, 0.15);
    --success: #10b981;
    --success-color: #10b981;
    --success-light: #d1fae5;
    --success-bg: #ecfdf5;
    --success-border: #a7f3d0;
    --warning: #f59e0b;
    --warning-color: #f59e0b;
    --warning-light: #fef3c7;
    --warning-bg: #fffbeb;
    --danger: #ef4444;
    --danger-color: #ef4444;
    --danger-light: #fee2e2;
    --danger-bg: #fef2f2;
    --danger-border: #fecaca;
    --info: #3b82f6;
    --info-light: #dbeafe;
    --info-bg: #eff6ff;
    --accent-teal: #14b8a6;
    --accent-purple: #8b5cf6;
    --accent-indigo: #6366f1;
    --neutral-50: #f9fafb;
    --gray-50: #f9fafb;
    --neutral-100: #f3f4f6;
    --gray-100: #f3f4f6;
    --neutral-200: #e5e7eb;
    --gray-200: #e5e7eb;
    --neutral-300: #d1d5db;
    --gray-300: #d1d5db;
    --neutral-400: #9ca3af;
    --gray-400: #9ca3af;
    --neutral-500: #6b7280;
    --gray-500: #6b7280;
    --neutral-600: #4b5563;
    --gray-600: #4b5563;
    --neutral-700: #374151;
    --gray-700: #374151;
    --neutral-800: #1f2937;
    --gray-800: #1f2937;
    --neutral-900: #111827;
    --gray-900: #111827;
    --status-active: #10b981;
    --status-inactive: #ef4444;
    --status-pending: #f59e0b;
    --status-draft: #6b7280;
    --border-radius-sm: 6px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --space-1: 0.25rem;
    --spacing-xs: 0.25rem;
    --space-2: 0.5rem;
    --spacing-sm: 0.5rem;
    --space-3: 0.75rem;
    --spacing-md: 0.75rem;
    --space-4: 1rem;
    --spacing-lg: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --spacing-xl: 1.5rem;
    --space-8: 2rem;
    --spacing-2xl: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", sans-serif;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", sans-serif;
    --font-size-xs: 0.6875rem;
    --font-size-sm: 0.8125rem;
    --font-size-base: 0.875rem;
    --font-size-md: 0.9375rem;
    --font-size-lg: 1rem;
    --font-size-xl: 1.125rem;
    --font-size-2xl: 1.25rem;
    --font-size-3xl: 1.5rem;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    --transition: all 0.2s ease;
    --transition-fast: all 0.15s ease;
    --transition-base: all 0.2s ease;
    --transition-slow: all 0.3s ease;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    70% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --primary: #003ec5;
        --text-dark: #000000;
        --text-light: #374151;
        --border-color: #4b5563;
    }
}
