#fallback-loader {
    font-size: 18px;
    color: #333;
    text-align: center;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's above all other elements */
  }
  
  body.loaded #loading-screen {
    display: none; /* Hide the loading screen when the page has loaded */
  }
  