.loading-overlay {
  z-index: 9999;
  background-color: #00000080;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.loading-spinner {
  background: #fff;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  display: flex;
  box-shadow: 0 2px 10px #0000001a;
}

.spinner-circle {
  border: 4px solid #f3f3f3;
  border-top-color: #1a1e3b;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: 1s linear infinite spin;
}

.spinner-text {
  color: #1a1e3b;
  font-size: 1.2rem;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*# sourceMappingURL=agora-main.580d23da.css.map */
