/* color-plate.css - Base colors and variables for ARG Management System */

:root {
    /* ── Legacy tokens (kept for backward compatibility) ── */
    --primary-color:       #2d7b4f;
    --primary-hover:       #1e5c38;
    --primary-glow:        rgba(45, 122, 79, 0.8);
    --primary-glow-light:  rgba(45, 122, 79, 0.3);
    --primary-glow-dim:    rgba(45, 122, 79, 0.15);

    --bg-dark:             #030a03;

    --glass-bg:            rgba(255, 255, 255, 0.03);
    --glass-bg-hover:      rgba(255, 255, 255, 0.05);
    --glass-border:        rgba(45, 122, 79, 0.20);
    --glass-border-light:  rgba(255, 255, 255, 0.05);

    --text-white:          #ffffff;
    --text-gray-light:     rgba(255, 255, 255, 0.9);
    --text-gray-muted:     rgba(255, 255, 255, 0.4);
    --text-gray-faded:     rgba(255, 255, 255, 0.2);
    --text-gray-dark:      rgba(255, 255, 255, 0.1);

    /* ── Status colors (semantic, consistent) ── */
    --color-success:       #4ade80;
    --color-warning:       #f59e0b;
    --color-danger:        #ef4444;
    --color-info:          #60a5fa;
    --color-purple:        #a78bfa;
    --color-amber:         #fbbf24;
}

.green-glow-text {
    color: var(--primary-color);
    text-shadow: 0 0 30px var(--primary-glow), 0 0 60px var(--primary-glow-light);
}

/* Base tailwind variables mapped to CSS root when necessary */