.global-spinner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.global-spinner {
  display: inline-block;
  border-radius: 999px;
  border: 3px solid rgba(159, 176, 196, 0.35);
  border-top-color: rgba(159, 176, 196, 1);
  animation: spin 0.8s linear infinite;
  width: 40px;
  height: 40px;
}

