/* Full-screen loading screen */
#loadingScreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    color: #fff;
  }
  
  /* Loading text */
  #loadingText {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  #progressBarContainer {
    width: 80%;
    height: 20px;
    background-color: #444;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  #progressBar {
    width: 0%;
    height: 100%;
    background-color: #4caf50;
  }
  
  /* Progress bar container */
  #progressBar {
    height: 100%;
    background-color: #fff;
    width: 0%; /* Starts at 0% and will be updated via JavaScript */
    border-radius: 10px;
  }
  
  /* Loading image */
  #loadingImage {
    width: 150px;
    height: auto;
  }
  
