/* Fullscreen loader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.4s ease;
}

/* Loading bar */
.loader-bar {
  width: 60%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 20px;
}

.loader-bar-fill {
  height: 100%;
  width: 0;
  background: #3498db;
  transition: width 0.2s ease;
}

/* Percentage text */
#load-percent {
  margin-top: 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #555;
}

#preloader img {
  width: 80px;
  margin-bottom: 10px;
}
