/* Full-screen loading overlay */
#hospitalProgressOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;

    background: rgba(255, 255, 255, 0.65);

    align-items: center;
    justify-content: center;
}

/* Circular spinner */
.hospital-spinner {
    width: 50px;
    height: 50px;

    border: 5px solid #e0e0e0;
    border-top: 5px solid #4e73df;

    border-radius: 50%;

    animation: hospitalSpin 0.8s linear infinite;
}

@keyframes hospitalSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}