#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    mix-blend-mode: exclusion;
    opacity: 0.8;
    z-index: 1000; /* Ensure it's above everything else */
    display: flex;
    justify-content: center;
    align-items: center;
}

#progressBarContainer {
    z-index: 1001;
    width: 100%;
    background-color: #ddd;
}

#progressBar {
    width: 0%;
    height: 1lvh;
    transition: width 0.5s ease-out;
    background-color: #666666;
}