
.view-loading {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(243, 246, 249, .78);
  backdrop-filter: blur(2px);
  color: var(--text);
}

.loading-spinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(21, 94, 70, .18);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: vavis-spin .75s linear infinite;
}

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