/* Loading screen styles */
#loading-screen {
    /*position: fixed;*/ /* Fixed position to keep the loading screen in entire view */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 70vw;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Ensure the loading screen appears above other content */
}

#loading-icon {
    width: 50px;
    height: 50px;
    border: 3px solid #222745;
    border-top: 3px solid #06768d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide the loading screen when the page is fully loaded */
body.loaded #loading-screen {
    display: none;
}