div#loading {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5); /* Dim the background */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000000000; /* Ensure it's on top of other elements */
    display: none; /* Hidden by default */
    pointer-events: auto; /* Re-enable pointer events on the overlay */
}

#loading-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the image */
    z-index: 1000000001;
    width: 80px;
    height: 80px;
}