:root {
    /* Colores Principales */
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;

    /* Colores de Fondo */
    --bg-body: #f1f5f9;
    --bg-card: #ffffff;
    --bg-sidebar: #1e293b;
    --bg-header: #ffffff;
    --bg-input: #f8fafc;
    --bg-muted: #f1f5f9;

    /* Colores de Texto */
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-light: #64748b;
    --text-muted: #64748b;
    --text-color: #1e293b;
    --text-white: #ffffff;

    /* Superficies auxiliares */
    --bg-white: #ffffff;
    --surface: #ffffff;

    /* Bordes */
    --border-color: #e2e8f0;
    --input-border-color: #94a3b8;
    --border-radius: 0.5rem;
    --border-radius-sm: 0.25rem;
    --border-radius-lg: 0.75rem;

    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    /* Espaciado */
    --spacing-xs: 0.125rem;
    --spacing-sm: 0.25rem;
    --spacing-md: 0.4rem;
    --spacing-lg: 0.6rem;
    --spacing-xl: 0.85rem;

    /* Transiciones */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;

    /* Sidebar */
    --sidebar-width: 250px;
    --sidebar-collapsed-width: 64px;
    --header-height: 48px;
}

/* Tema Oscuro (opcional) */
[data-theme="dark"] {
    --bg-body: #0f172a;
    --bg-card: #182235;
    --bg-sidebar: #0f172a;
    --bg-header: #162033;
    --bg-input: #223149;
    --bg-muted: #111c2d;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-light: #94a3b8;
    --text-muted: #94a3b8;
    --text-color: #f1f5f9;
    --border-color: #314155;
    --input-border-color: #56697f;
    --bg-white: #182235;
    --surface: #182235;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.35);
    --shadow-md: 0 10px 20px -8px rgb(0 0 0 / 0.45), 0 4px 10px -6px rgb(0 0 0 / 0.35);
    --shadow-lg: 0 18px 32px -12px rgb(0 0 0 / 0.5), 0 10px 18px -12px rgb(0 0 0 / 0.42);
}

@media (max-width: 768px) {
    :root {
        --spacing-md: 0.5rem;
        --spacing-lg: 0.75rem;
        --spacing-xl: 1rem;
    }
}

@media (min-width: 769px) {
    :root {
        --spacing-md: 0.38rem;
        --spacing-lg: 0.56rem;
        --spacing-xl: 0.8rem;
    }
}
