.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #171717;
}

.loader.hidden {
  display: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid transparent;
  border-top-color: #e13833;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-text {
  font-size: 1.2rem;
  color: #555;
}

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