/* Variables CSS personalizadas para FiscMinerd */
:root {
    /* Colores institucionales MOPC/MINERD */
    --primary-color: #00529B; /* Azul institucional */
    --primary-light: #1a73c2;
    --primary-dark: #003d73;
    --secondary-color: #F37021; /* Naranja institucional */
    --secondary-light: #ff9550;
    --secondary-dark: #d15a0d;
    
    /* Colores de fondo */
    --background-color: #f4f6f9;
    --surface-color: #ffffff;
    
    /* Colores de texto */
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    /* Colores de estado */
    --success-color: #10b981;
    --success-light: #34d399;
    --error-color: #ef4444;
    --error-light: #f87171;
    --warning-color: #f59e0b;
    --warning-light: #fbbf24;
    --info-color: #3b82f6;
    --info-light: #60a5fa;
    
    /* Espaciado */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    
    /* Border radius */
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
    
    /* Sombras */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 25px rgba(0, 0, 0, 0.2);
    
    /* Transiciones */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    
    /* Sidebar */
    --sidebar-width: 280px;
}

/* Tema oscuro (opcional para futuro) */
@media (prefers-color-scheme: dark) {
    :root {
        --background-color: #1e293b;
        --surface-color: #334155;
        --text-primary: #f1f5f9;
        --text-secondary: #cbd5e1;
        --text-light: #94a3b8;
    }
}
