/* Center the loading indicator */
#loading {
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    z-index: 999; /* Ensure it's above other content */
}

/* Style for the loading image */
#loading img {
    max-width: 100px; /* Adjust the width as needed */
}
