/* 전역 풀스크린 로더 (2026-08-16) — utils/global_loader.js (window.ordarsShowLoader/HideLoader)
 * z-index 9800 = rmm 모달(1500~8000) 위 · 스낵바(9999) 아래 */
.ord-loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 9800;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.35);
}
.ord-loader-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.ord-loader-spin {
  width: 30px;
  height: 30px;
  border: 3px solid #e2e8f0;
  border-top-color: #2563eb;
  border-radius: 999px;
  animation: ord-loader-spin 0.7s linear infinite;
}
.ord-loader-msg { font-size: 12.5px; font-weight: 600; color: #334155; }
@keyframes ord-loader-spin { to { transform: rotate(360deg); } }

html.dark .ord-loader-box { background: #1e293b; }
html.dark .ord-loader-spin { border-color: #334155; border-top-color: #3b82f6; }
html.dark .ord-loader-msg { color: #e2e8f0; }
