@charset "utf-8";
/* CSS Document */
/* preloader.css */

body {
  overflow-y: auto; /* nebo overflow: auto; */
}

#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #111;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 80px;
  height: 80px;
  border: 8px solid rgba(255, 255, 255, 0.2);
  border-top: 8px solid #0099FF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#progress {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

#loading-text {
  font-size: 1.2rem;
  opacity: 0.7;
}
