.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eef1ef;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading-overlay.hidden {
  display: none;
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border: 4px solid #eef1ef;
  border-top: 4px solid #ff6f61;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 1rem auto;
  display: block;
}

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

.loading-text {
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  margin: 0.4rem 1.2rem;
  display: block;
  line-height: 1.5;
}

.loading-subtext {
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  margin: 0.4rem 1.2rem;
  display: block;
  line-height: 1.5;
}
