/**
 * WhatsApp Bot Yönetim Paneli
 * CSS Değişkenleri - Tasarım Sistemi
 */

:root {
    /* =========================
       RENK PALETİ
       ========================= */
    
    /* Ana Renkler */
    --color-primary: #0066FF;
    --color-primary-dark: #0052CC;
    --color-primary-light: #E6F0FF;
    --color-primary-hover: #0052CC;
    
    /* WhatsApp Yeşili (Vurgu) */
    --color-accent: #25D366;
    --color-accent-dark: #1DA851;
    --color-accent-light: #E8F8EE;
    
    /* Nötr Renkler */
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-400: #9CA3AF;
    --color-gray-500: #6B7280;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;
    
    /* Durum Renkleri */
    --color-success: #10B981;
    --color-success-light: #D1FAE5;
    --color-success-dark: #059669;
    
    --color-warning: #F59E0B;
    --color-warning-light: #FEF3C7;
    --color-warning-dark: #D97706;
    
    --color-error: #EF4444;
    --color-error-light: #FEE2E2;
    --color-error-dark: #DC2626;
    
    --color-info: #3B82F6;
    --color-info-light: #DBEAFE;
    --color-info-dark: #2563EB;
    
    /* Arka Plan Renkleri */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-tertiary: #F3F4F6;
    --bg-dark: #1F2937;
    
    /* Metin Renkleri */
    --text-primary: #111827;
    --text-secondary: #4B5563;
    --text-tertiary: #9CA3AF;
    --text-inverse: #FFFFFF;
    
    /* Kenarlık Renkleri */
    --border-light: #E5E7EB;
    --border-medium: #D1D5DB;
    --border-dark: #9CA3AF;
    
    /* =========================
       TİPOGRAFİ
       ========================= */
    
    /* Font Ailesi */
    --font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-mono: 'SF Mono', 'Monaco', 'Consolas', 'Liberation Mono', monospace;
    
    /* Font Boyutları */
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;   /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */
    
    /* Satır Yükseklikleri */
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    
    /* Font Ağırlıkları */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* =========================
       SPACING (BOŞLUKLAR)
       ========================= */
    
    --spacing-0: 0;
    --spacing-1: 0.25rem;   /* 4px */
    --spacing-2: 0.5rem;    /* 8px */
    --spacing-3: 0.75rem;   /* 12px */
    --spacing-4: 1rem;      /* 16px */
    --spacing-5: 1.25rem;   /* 20px */
    --spacing-6: 1.5rem;    /* 24px */
    --spacing-8: 2rem;      /* 32px */
    --spacing-10: 2.5rem;   /* 40px */
    --spacing-12: 3rem;     /* 48px */
    --spacing-16: 4rem;     /* 64px */
    
    /* =========================
       KENARLIK VE KÖŞELER
       ========================= */
    
    --border-width: 1px;
    --border-width-2: 2px;
    
    --radius-sm: 0.25rem;   /* 4px */
    --radius-md: 0.5rem;    /* 8px */
    --radius-lg: 0.75rem;   /* 12px */
    --radius-xl: 1rem;      /* 16px */
    --radius-2xl: 1.5rem;   /* 24px */
    --radius-full: 9999px;
    
    /* =========================
       GÖLGELER
       ========================= */
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    
    /* Renkli Gölgeler */
    --shadow-primary: 0 4px 14px 0 rgba(0, 102, 255, 0.25);
    --shadow-accent: 0 4px 14px 0 rgba(37, 211, 102, 0.25);
    --shadow-error: 0 4px 14px 0 rgba(239, 68, 68, 0.25);
    
    /* =========================
       GEÇİŞLER
       ========================= */
    
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    --transition-slower: 500ms ease;
    
    /* =========================
       Z-INDEX
       ========================= */
    
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal-backdrop: 300;
    --z-modal: 400;
    --z-tooltip: 500;
    --z-toast: 600;
    
    /* =========================
       LAYOUT
       ========================= */
    
    --container-max-width: 1280px;
    --sidebar-width: 260px;
    --header-height: 64px;
}

/* Dark Mode Desteği (Gelecek için) */
@media (prefers-color-scheme: dark) {
    :root.auto-dark {
        --bg-primary: #1F2937;
        --bg-secondary: #111827;
        --bg-tertiary: #374151;
        --text-primary: #F9FAFB;
        --text-secondary: #D1D5DB;
        --text-tertiary: #9CA3AF;
        --border-light: #374151;
        --border-medium: #4B5563;
    }
}
