/**
 * ATC Dashboard - CSS Değişkenleri
 */

:root {
    /* Renkler - Dark Theme */
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-tertiary: #1e293b;
    --bg-card: #162032;
    --bg-hover: #1e3a5f;
    
    --border-color: #334155;
    --border-light: #475569;
    
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Accent renkler */
    --accent-green: #4ade80;
    --accent-green-dark: #22c55e;
    --accent-blue: #38bdf8;
    --accent-blue-dark: #0ea5e9;
    --accent-orange: #f59e0b;
    --accent-orange-dark: #d97706;
    --accent-red: #ef4444;
    --accent-red-dark: #dc2626;
    --accent-cyan: #00ffff;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    
    /* Durum renkleri */
    --status-active: #4ade80;
    --status-warning: #f59e0b;
    --status-danger: #ef4444;
    --status-info: #38bdf8;
    --status-muted: #64748b;
    
    /* Tipografi */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Orbitron', 'Poppins', sans-serif;
    --font-mono: 'Consolas', 'Monaco', monospace;
    
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 2rem;
    --fs-4xl: 2.5rem;
    
    --fw-light: 300;
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(74, 222, 128, 0.3);
    
    /* Layout */
    --sidebar-width: 260px;
    --sidebar-collapsed: 70px;
    --header-height: 60px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-tooltip: 400;
    --z-toast: 500;
}
