body.network-loading #app {
  filter: grayscale(0.55) brightness(0.55);
  pointer-events: none;
  user-select: none;
}

.global-request-loading[hidden] {
  display: none;
}

.global-request-loading {
  position: fixed;
  inset: 0;
  z-index: 30000;
  display: grid;
  place-items: center;
  background: rgba(4, 8, 18, 0.56);
  backdrop-filter: blur(2px);
}

.global-loading-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(126, 224, 255, 0.34);
  border-radius: 14px;
  color: #eef6ff;
  background: rgba(12, 18, 34, 0.92);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.46);
  font-weight: 700;
}

.global-loading-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(238, 246, 255, 0.28);
  border-top-color: #7ee0ff;
  border-radius: 999px;
  animation: global-loading-spin 0.8s linear infinite;
}

@keyframes global-loading-spin {
  to {
    transform: rotate(360deg);
  }
}
