/* /Shared/Loading.razor.rz.scp.css */
.loading-overlay[b-45jrrckhyp] {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.loading-backdrop[b-45jrrckhyp] {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(5px);
}

.loading-card[b-45jrrckhyp] {
    position: relative;
    width: min(360px, 92vw);
    padding: 1.75rem 1.5rem;
    border-radius: 22px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
    animation: loading-in-b-45jrrckhyp 0.22s ease-out;
}

.loading-spinner[b-45jrrckhyp] {
    position: relative;
    width: 76px;
    height: 76px;
    margin: 0 auto 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-ring[b-45jrrckhyp] {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 6px solid rgba(30, 58, 138, 0.12);
    border-top-color: var(--mud-palette-primary);
    animation: loading-spin-b-45jrrckhyp 0.9s linear infinite;
}

.loading-icon[b-45jrrckhyp] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--mud-palette-primary), #2aa79c);
}

    .loading-icon .mud-icon-root[b-45jrrckhyp] {
        font-size: 1.35rem;
    }

.loading-title[b-45jrrckhyp] {
    margin-bottom: 0.35rem;
    color: #0f172a;
    font-weight: 800;
}

.loading-text[b-45jrrckhyp],
.loading-text.mud-typography[b-45jrrckhyp] {
    max-width: 280px;
    margin: 0 auto 0.9rem;
    color: #475569 !important;
    font-size: 0.92rem;
    line-height: 1.45;
}

.loading-dots[b-45jrrckhyp] {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

    .loading-dots span[b-45jrrckhyp] {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--mud-palette-primary);
        opacity: 0.35;
        animation: loading-dot-b-45jrrckhyp 1.1s infinite ease-in-out;
    }

        .loading-dots span:nth-child(2)[b-45jrrckhyp] {
            animation-delay: 0.15s;
        }

        .loading-dots span:nth-child(3)[b-45jrrckhyp] {
            animation-delay: 0.3s;
        }

.loading-bar[b-45jrrckhyp] {
    width: 100%;
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.22);
}

.loading-bar-fill[b-45jrrckhyp] {
    width: 45%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient( 90deg, var(--mud-palette-primary), #2aa79c, #60d6c5 );
    animation: loading-bar-b-45jrrckhyp 1.15s ease-in-out infinite;
}

@keyframes loading-in-b-45jrrckhyp {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes loading-spin-b-45jrrckhyp {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loading-dot-b-45jrrckhyp {
    0%, 80%, 100% {
        opacity: 0.35;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

@keyframes loading-bar-b-45jrrckhyp {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(260%);
    }
}

@media (max-width: 600px) {
    .loading-card[b-45jrrckhyp] {
        width: min(330px, 92vw);
        padding: 1.5rem 1.15rem;
    }

    .loading-spinner[b-45jrrckhyp] {
        width: 68px;
        height: 68px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .loading-card[b-45jrrckhyp],
    .loading-ring[b-45jrrckhyp],
    .loading-dots span[b-45jrrckhyp],
    .loading-bar-fill[b-45jrrckhyp] {
        animation: none;
    }
}
