/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 9999;
  opacity: 1; /* Start fully visible */
  transition: opacity 0.5s ease; /* Fade-out transition */
}

/* Smaller Loading Bar */
#loading-bar {
  width: 60%; /* Adjust width as desired */
  height: 8px; /* Make the bar smaller */
  background-color: #555;
  border-radius: 5px;
  overflow: hidden;
}

#loading-progress {
  width: 0;
  height: 100%;
  background-color: #ffffff;
  transition: width 0.3s ease; /* Smooth transition for width */
}

/* Loading Image */
#loading-image {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}
