.global-loading-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 246, 249, 0.72);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 100000;
}

.global-loading-overlay[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.global-loading-overlay__content {
  min-width: 160px;
  padding: 18px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(57, 121, 177, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.global-loading-overlay__spinner {
  width: 2.5rem;
  height: 2.5rem;
  color: #3979b1;
  border-width: 0.28em;
}

.global-loading-overlay__text {
  color: #3b444b;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

body.is-global-loading {
  cursor: progress;
}

body.is-global-loading * {
  cursor: progress !important;
}
