/* 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: 200%;
    font-weight: semibold;
    font-family: Arial, Helvetica, sans-serif;
  }

  #progressBarContainer {
    width: 78%;
    height: 6%;
    background-color: #444;
    border-radius: 30px;
    overflow: hidden;
  }
  
  
  /* 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: 25vw;
    height: auto;
  }
  
