/* Loader Overlay - Exact Blazor Style */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    color: #ffffff;
}

/* Spinner Animation - Exact Blazor Style */
.spinner {
    width: 80px;
    height: 80px;
    position: relative;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #4CAF50;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    animation-delay: -1.0s;
}

/* Loading Text Styling - Exact Blazor Style */
.loading-progress-text {
    margin-top: 20px;
    color: #e0e0e0;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.5px;
    animation: fade-in 1.5s ease-in-out infinite;
}

/* Animations - Exact Blazor Style */
@keyframes bounce {
    0%, 100% {
        transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
    }
}

@keyframes fade-in {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}