/* DE_PC2 v2.0 — variables.css */
:root {
  /* Brand colors */
  --brand-blue:    #0099ff;
  --brand-blue-dk: #0066cc;
  --brand-navy:    #0d1b2a;

  /* Dark theme (default) */
  --bg:            #0d1117;
  --bg-2:          #161b22;
  --bg-3:          #21262d;
  --border:        #30363d;
  --text:          #e6edf3;
  --text-muted:    #8b949e;
  --accent:        #0099ff;
  --accent-hover:  #0080dd;
  --danger:        #f85149;
  --success:       #3fb950;
  --warning:       #d29922;
  --mark-bg:       rgba(0,153,255,0.25);
  --mark-color:    #79c0ff;

  /* Sidebar */
  --sidebar-w:     280px;
  --sidebar-bg:    #0d1117;

  /* Table */
  --row-hover:     rgba(0,153,255,0.06);
  --row-alt:       rgba(255,255,255,0.02);
  --row-expanded:  rgba(0,153,255,0.05);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.5);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.6);

  /* Radius */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  12px;

  /* Transitions */
  --tr:    0.15s ease;

  /* Z-indices */
  --z-sidebar:  100;
  --z-header:   200;
  --z-modal:    400;
  --z-toast:    500;
}

[data-theme="light"] {
  --bg:          #f6f8fa;
  --bg-2:        #ffffff;
  --bg-3:        #eaeef2;
  --border:      #d0d7de;
  --text:        #1f2328;
  --text-muted:  #656d76;
  --accent:      #0066cc;
  --accent-hover:#0052a3;
  --sidebar-bg:  #f6f8fa;
  --row-hover:   rgba(0,102,204,0.05);
  --row-alt:     rgba(0,0,0,0.02);
  --row-expanded:rgba(0,102,204,0.04);
  --mark-bg:     rgba(0,102,204,0.15);
  --mark-color:  #0052a3;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.1);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.15);
}

/* @v1776352182 */