﻿/* Full-page overlay */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Ensure it is on top of other elements */
}

/* Loading ring style */
.loading-ring {
    width: 60px;
    height: 60px;
    border: 8px solid rgba(255, 255, 255, 0.3); /* Lighter background ring */
    border-top: 8px solid white; /* Rotating section of the ring */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Rotation animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
