#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Optional: semi-transparent background */
    display: none; /* Hidden by default */
    z-index: 1050; /* Ensure it appears above other elements */
    justify-content: center; /* Center horizontally */
    align-items: flex-start; /* Align to the top */
    padding-top: 20px; /* Add some spacing from the top */
}