html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.loader-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loader {
  border: 2px solid #e6e6e6;
  border-top: 2px solid #f67c01;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 1s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}

.loading-text {
  margin-top: 16px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
}