/* SUW - Zmienne CSS */
:root {
    /* Kolory główne */
    --primary: #1976d2;
    --primary-dark: #1565c0;
    --primary-light: #e3f2fd;
    
    --success: #388e3c;
    --success-light: #e8f5e9;
    
    --warning: #f57c00;
    --warning-light: #fff3e0;
    
    --danger: #c62828;
    --danger-light: #ffebee;
    
    --info: #7b1fa2;
    --info-light: #f3e5f5;
    
    /* Neutralne */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    /* Tło */
    --bg-body: #f5f7fa;
    --bg-card: #ffffff;
    --bg-nav: #ffffff;
    
    /* Tekst */
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-muted: #999999;
    
    /* Obramowania */
    --border-color: #e0e0e0;
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
    
    /* Cienie */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 11px;
    --font-size-sm: 12px;
    --font-size-base: 13px;
    --font-size-md: 14px;
    --font-size-lg: 16px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    
    /* Wysokości */
    --nav-height: 56px;
    --sidebar-width: 240px;
    
    /* Priorytety */
    --priority-p1: #c62828;
    --priority-p2: #f57c00;
    --priority-p3: #1976d2;
    --priority-p4: #43a047;
    
    /* Statusy */
    --status-new: #1976d2;
    --status-assigned: #7b1fa2;
    --status-progress: #f57c00;
    --status-waiting: #fbc02d;
    --status-resolved: #388e3c;
    --status-closed: #616161;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
}

/* Dark mode (przyszłościowo) */
[data-theme="dark"] {
    --bg-body: #121212;
    --bg-card: #1e1e1e;
    --bg-nav: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #333333;
}
