#loading-message {
    position: fixed; /* Makes the element stay in place while scrolling */
    top: 50%; /* Centers vertically */
    left: 50%; /* Centers horizontally */
    transform: translate(-50%, -50%); /* Adjusts the positioning to ensure true center */
    z-index: 1000; /* Ensures it's above other elements */
    background-color: rgba(0, 0, 0, 0.8); /* Optional: Adds a background for visibility */
    color: white; /* Optional: Makes the text stand out */
    padding: 20px; /* Optional: Adds spacing around the text */
    border-radius: 10px; /* Optional: Rounds the corners */
    font-size: 18px; /* Optional: Adjusts the font size */
    text-align: center; /* Centers the text within the div */
}