/* =========================================
   LV8 GLOBAL THEME (theme.css)
   Contains: Scrollbars, Selection, Defaults
   ========================================= */

    /* ======== 1. ROOT VARIABLES & BASE STYLES  ======== */
    :root {
        --background: #0D0D0D;
        --primary: #A67B5B;    
        --highlight: #C89F7B;  
        --secondary: #555555;  
        --mystic2: #00FF7F;    
        --status-run: #00FF7F;
        --status-await: #FFD700;
        --status-idle: #555555;
        --online: #39FF14;
        --sattva-glow: #ffffff; 
        --rajas-glow: #ff4444; 
        --tamas-color: #1A1A1A; 
        --mystic-glow: rgba(0, 255, 127, 0.6);

        --ethereal-blue: #8be9fd;
        /* Cosmic Telemetry UI */
        --mystic-blue: #82AAFF; /* A deep, luminous orbital blue */
        --error: #ff5f56;
        --warning: #ff3333;
        --term-json: #ccc;
        --vis-rant: #e4e4e7;
        --glow-monitor: 0 0 5px rgba(228, 228, 231, 0.3);
    
        --vis-blue: #3b82f6; 
        --glow-sigil: 0 0 8px rgba(59, 130, 246, 0.6);

        --pure-white: #ffffff;
        --soft-white: #E8E3DF;
        --citrine: #f1fa8c;     /* Light Gold */
        --brand-gold: #d4af37;  /* Deep Gold */
        
        /* Glows */
        --glow-gold: 0 0 8px rgba(212, 175, 55, 0.6);



        /* Electric Cyan/Blue for the Intellect/Buddhi */
        --buddhi-active: #00E5FF; 
        --buddhi-glow: rgba(0, 229, 255, 0.6);

        /* --- ANANTAM PERSONA (The Unlimited / Blazing Fire) --- */
        /* 
        --anantam-active: #FF5722; Blazing Orange/Red
        --anantam-glow: rgba(255, 87, 34, 0.6);
        */
        --anantam-active: #651FFF;
        --anantam-glow: rgba(101, 31, 255, 0.7);
        --anantam-alt: #3D5AFE ;
        --anantam-active2: #7C4DFF;
        --anantam-active3: #651FFF;

        /* --- ADMIN / TESTING NODES --- */
        /* Raw Mode: Sterile, baseline white */
        --raw-active: #FFFFFF; 
        
        /* Jyotishi Mode: Cyberpunk Saffron / Digital Marigold */
        --jyotishi-active: #FF9100;
        --jyotishi-glow: rgba(255, 145, 0, 0.6);

        /* 2. Fonts */
        /* Ensure you are linking to these fonts in your HTML head if they are external */
        --font-main: 'Source Code Pro', monospace;
        --font-art:  'Courier New', Courier, monospace; /* For ASCII */
        --font-sanskrit: 'Noto Sans Devanagari', sans-serif;
    }

    


/* --- 2. GLOBAL SCROLLBARS (The "Integrated UI" Look) --- */

/* Firefox Standard */
* {
    scrollbar-width: thin; /* Makes it slimmer */
    scrollbar-color: var(--secondary) var(--background); /* Thumb / Track */
}

/* Webkit (Chrome, Safari, Edge) */

/* The Track (Background) */
::-webkit-scrollbar {
    width: 10px;  /* Vertical width */
    height: 10px; /* Horizontal height */
    background-color: var(--background);
}

/* The Track Piece (The empty space) */
::-webkit-scrollbar-track {
    background: transparent; /* Keeps it invisible/void-like */
}

/* The Thumb (The handle) */
::-webkit-scrollbar-thumb {
    background-color: var(--secondary); /* Grey by default */
    border: 2px solid var(--background); /* Creates a padding/floating effect */
    border-radius: 0; /* Keep it square for "Terminal" feel */
}

/* The Thumb Hover (Interaction) */
::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary); /* Light Brown on hover */
    /* OR use var(--highlight) if you want it to glow Amber */
}

/* The Corner (Where X and Y bars meet) */
::-webkit-scrollbar-corner {
    background-color: var(--background);
}

/* --- 2. TEXT SELECTION (Optional Bonus) --- */
/* Makes highlighted text match your theme instead of system blue */
::selection {
    background: var(--highlight);
    color: var(--background);
}