/*
 * Pages 관리자/로그인 화면 공통 테마
 * DWC 뷰어 기본 UI 디자인 규칙(dwc-basic-ui.md) 적용
 */

:root {
  --bg: #1a1d23;
  --sidebar: #13151a;
  --panel: #21252e;
  --border: #2e3340;
  --text: #c9d1d9;
  --text-secondary: #6e7681;
  --accent: #58a6ff;
  --accent-text: #0b1320;
  --success: #3fb950;
  --error: #f85149;
  --warning: #e3b341;
  --hover: #2d3340;

  --font-sans: 'Segoe UI', system-ui, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

input[type="checkbox"] { accent-color: var(--accent); }
