#loading {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 95vh;
    font-family: 'Open Sans', 'Helvetica Neue', helvetica, arial, verdana, sans-serif;
    font-weight: 400;
    font-size: 13px;
    z-index: 10000; /* Ensure it's on top */
    background: rgba(255, 255, 255, 0.9);
}

/* Keep the spinner animation */
#loading-image {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #343f4c;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

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

/* REMOVE auto-hide animation */
@keyframes cssAnimation {
    to {
        width: auto;
        height: auto;
        overflow: visible;
    }
}
@-webkit-keyframes cssAnimation {
    to {
        width: auto;
        height: auto;
        visibility: visible;
    }
}