/* ═══════════════════════════════════════════════════
   ANCORP ERP — 글로벌 테마 (다크 전용 + 스크롤바)
   ═══════════════════════════════════════════════════ */

:root {
  color-scheme: dark;
}

/* ─── 스크롤바 (Webkit: Chrome, Edge, Safari) ─── */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0b0d13;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: #4b5675;
  border-radius: 4px;
  border: 2px solid #0b0d13;
}
::-webkit-scrollbar-thumb:hover {
  background: #6c63ff;
}
::-webkit-scrollbar-corner {
  background: #0b0d13;
}

/* ─── 스크롤바 (Firefox) ─── */
* {
  scrollbar-width: thin;
  scrollbar-color: #4b5675 #0b0d13;
}
