/* ===================================================================
   BASE/VARIABLES.CSS
   CSS Custom Properties and Global Settings
   =================================================================== */
/* ===== 1. VARIABLES & GLOBAL SETTINGS ===== */
/* Global Variables */
:root {
    --primary-color: #0088cc;
    --dark-bg: #212529;
    --darker-bg: #1a1e21;
    --light-text: #ffffff;
    --muted-text: #adb5bd;
    --border-color: #2a2f34;
    --card-bg: #2a2f34;
    --card-hover-bg: #32383e;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
}


