/* ============================================================
   GridPanel Theme: 3RD Rock Grid
   Brand palette derived from 3rdrockgrid.com:
     #E07820  — brand orange  (primary accent, CTAs, active states)
     #F0933A  — light orange  (hover states, bright accents on dark)
     #B85E18  — dark orange   (pressed / deep accent)
     #111116  — near-black    (sidebar — always dark)
     #C4C4C4  — silver        (muted text, icons)
   ============================================================ */

:root,
[data-bs-theme="light"] {
    --gp-bg:              #F0EDE8;          /* warm off-white background */
    --gp-bg-card:         #FAFAF8;          /* soft off-white cards — less harsh than pure white */
    --gp-bg-sidebar:      #0D0D14;          /* near-black sidebar — always dark */
    --gp-bg-navbar:       #FAFAF8;          /* matches cards */
    --gp-accent:          #E07820;          /* brand orange */
    --gp-accent-hover:    #B85E18;          /* darker orange on hover */
    --gp-accent-rgb:      224, 120, 32;
    --gp-text:            #1A1816;          /* near-black body text */
    --gp-text-muted:      #8A8480;
    --gp-border:          #E4DDD4;          /* soft warm border */
    --gp-sidebar-text:    #ffffff;          /* white nav text on dark sidebar */
    --gp-sidebar-muted:   #8A8480;
    --gp-sidebar-active-bg: rgba(224, 120, 32, 0.18);
    --gp-sidebar-active:  #ffffff;
    --gp-bg-table-header: #ECEAE4;          /* warm-tinted table thead */
    --gp-bg-table-alt:    #F5F2EC;          /* alternating row tint */
    --gp-bg-card-hover:   #E8E4DC;          /* row hover */
    --gp-success:         #16a34a;
    --gp-warning:         #d4a020;          /* amber — distinct from brand orange */
    --gp-danger:          #dc2626;
    --gp-info:            #2460c8;          /* standard blue for info/notices */
    --gp-shadow:          0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --gp-shadow-md:       0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
    --gp-radius:          0.5rem;
    --gp-transition:      0.2s ease;
    /* Sidebar icon accent palette — sidebar is always dark, same values in both modes */
    --gp-icon-dash:       #ffffff;
    --gp-icon-people:     #7dd3fc;
    --gp-icon-world:      #60a5fa;
    --gp-icon-estate:     #34d399;
    --gp-icon-event:      #f472b6;
    --gp-icon-finance:    #E07820;
    --gp-icon-server:     #22d3ee;
    --gp-icon-star:       #E07820;
    --gp-icon-support:    #fb923c;
    --gp-icon-tools:      #c084fc;
    --gp-icon-content:    #86efac;
    --gp-icon-logout:     #f87171;
}

[data-bs-theme="dark"] {
    --gp-bg:              #111116;          /* lifted off pure black — subtle cool tint */
    --gp-bg-card:         #1C1C24;          /* clearly separates from background */
    --gp-bg-sidebar:      #0D0D14;          /* darkest element — sidebar recedes */
    --gp-bg-navbar:       #1C1C24;          /* matches cards */
    --gp-accent:          #F0933A;          /* brighter orange pops on dark backgrounds */
    --gp-accent-hover:    #E07820;
    --gp-accent-rgb:      240, 147, 58;
    --gp-text:            #EAEAE8;
    --gp-text-muted:      #7E7E8C;          /* lifted slightly — easier to read */
    --gp-border:          #28283C;          /* cool-tinted border — cards visible */
    --gp-sidebar-text:    #ffffff;
    --gp-sidebar-muted:   #686870;
    --gp-sidebar-active-bg: rgba(224, 120, 32, 0.22);
    --gp-sidebar-active:  #ffffff;
    --gp-bg-table-header: #1C1C24;          /* table thead background */
    --gp-bg-table-alt:    #141420;          /* alternating row — subtle, visible */
    --gp-bg-card-hover:   #242432;          /* hover clearly distinct */
    --gp-success:         #22c55e;
    --gp-warning:         #d4a020;          /* amber — distinct from brand orange */
    --gp-danger:          #f87171;
    --gp-info:            #4a8ae0;          /* brighter blue for dark mode */
    --gp-shadow:          0 1px 3px rgba(0,0,0,.45), 0 1px 2px rgba(0,0,0,.35);
    --gp-shadow-md:       0 4px 6px rgba(0,0,0,.45), 0 2px 4px rgba(0,0,0,.35);
    --gp-radius:          0.5rem;
    --gp-transition:      0.2s ease;
    /* Sidebar icon accent palette */
    --gp-icon-dash:       #ffffff;
    --gp-icon-people:     #7dd3fc;
    --gp-icon-world:      #60a5fa;
    --gp-icon-estate:     #34d399;
    --gp-icon-event:      #f472b6;
    --gp-icon-finance:    #E07820;
    --gp-icon-server:     #22d3ee;
    --gp-icon-star:       #E07820;
    --gp-icon-support:    #fb923c;
    --gp-icon-tools:      #c084fc;
    --gp-icon-content:    #86efac;
    --gp-icon-logout:     #f87171;
    /* Primary button — orange brand on dark background */
    --gp-btn-bg:          #E07820;
    --gp-btn-bg-hover:    #B85E18;
    --gp-btn-color:       #ffffff;
    /* User avatar circle */
    --gp-avatar-bg:       #7a3a0a;
    --gp-avatar-color:    #ffffff;
}