.loading-screen {
  z-index: 9999;
  background-color: #ffffffe6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: opacity .3s ease-out;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-logo {
  width: 200px;
  margin-bottom: 20px;
}

.loading-spinner {
  border: 5px solid #0071ce33;
  border-top-color: #0071ce;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: 1s ease-in-out infinite spin;
}

.loading-text {
  color: #333;
  margin-top: 20px;
  font-family: sans-serif;
  font-size: 18px;
}

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