/**
 * Variables & Themes
 * Estilo Evolution Manager
 */

:root {
    /* Cores principais - Evolution Style */
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: rgba(16, 185, 129, 0.1);
    --secondary: #0ea5e9;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --orange: #f97316;

    /* Backgrounds - Modo Escuro por padrão */
    --bg: #0d1117;
    --bg-secondary: #161b22;
    --card-bg: #1c2128;
    --card-border: #30363d;

    /* Textos */
    --text: #e6edf3;
    --text-light: #8b949e;
    --text-muted: #6e7681;

    /* Inputs */
    --input-bg: #0d1117;
    --input-border: #30363d;
    --input-focus: #10b981;

    /* Shadows */
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] {
    --bg: #f0f6fc;
    --bg-secondary: #ffffff;
    --card-bg: #ffffff;
    --card-border: #d0d7de;
    --text: #1f2328;
    --text-light: #656d76;
    --text-muted: #8c959f;
    --input-bg: #ffffff;
    --input-border: #d0d7de;
    --shadow: rgba(0, 0, 0, 0.1);
}