/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-ewds4ysfmx],
.components-reconnect-repeated-attempt-visible[b-ewds4ysfmx],
.components-reconnect-failed-visible[b-ewds4ysfmx],
.components-pause-visible[b-ewds4ysfmx],
.components-resume-failed-visible[b-ewds4ysfmx],
.components-rejoining-animation[b-ewds4ysfmx] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-ewds4ysfmx],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-ewds4ysfmx],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-ewds4ysfmx],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-ewds4ysfmx],
#components-reconnect-modal.components-reconnect-retrying[b-ewds4ysfmx],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-ewds4ysfmx],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-ewds4ysfmx],
#components-reconnect-modal.components-reconnect-failed[b-ewds4ysfmx],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-ewds4ysfmx] {
    display: block;
}


#components-reconnect-modal[b-ewds4ysfmx] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-ewds4ysfmx 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-ewds4ysfmx 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-ewds4ysfmx 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-ewds4ysfmx]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-ewds4ysfmx 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-ewds4ysfmx {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-ewds4ysfmx {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-ewds4ysfmx {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-ewds4ysfmx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-ewds4ysfmx] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-ewds4ysfmx] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-ewds4ysfmx] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-ewds4ysfmx] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-ewds4ysfmx] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-ewds4ysfmx] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-ewds4ysfmx 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-ewds4ysfmx] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-ewds4ysfmx {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/ExpiredQrSession.razor.rz.scp.css */
.error-page-container[b-q0i20dttht] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.error-icon-container[b-q0i20dttht] {
    margin-bottom: var(--spacing-4);
}

.error-title[b-q0i20dttht] {
    color: #e53e3e;
    margin-bottom: var(--spacing-3);
}

.error-description[b-q0i20dttht] {
    margin-bottom: var(--spacing-5);
}

.divider-container[b-q0i20dttht] {
    margin-bottom: var(--spacing-4);
}

.btn-icon[b-q0i20dttht] {
    margin-right: 8px;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.qr-section[b-lasy1ehvxa] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.qr-instruction[b-lasy1ehvxa] {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-main, #FFFFFF);
    margin: 0;
}

.qr-code-container[b-lasy1ehvxa] {
    background-color: white;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.qr-code-placeholder[b-lasy1ehvxa] {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted, #94A3B8);
    background-color: #f8fafc;
    border-radius: 4px;
}

.qr-icon[b-lasy1ehvxa] {
    width: 160px;
    height: 160px;
}

.qr-expired-overlay[b-lasy1ehvxa] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--color-danger, #e53e3e);
    font-weight: 600;
}

.divider[b-lasy1ehvxa] {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-top: 0.5rem;
}

.divider[b-lasy1ehvxa]::before,
.divider[b-lasy1ehvxa]::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--color-border, rgba(255, 255, 255, 0.05));
}

.divider span[b-lasy1ehvxa] {
    padding: 0 1rem;
    color: var(--color-text-muted, #94A3B8);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.text-danger[b-lasy1ehvxa] {
    color: var(--color-danger-light, #fca5a5);
    font-weight: bold;
}

.timer[b-lasy1ehvxa] {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-brand-green, #15B871);
    margin-top: 0.5rem;
    font-variant-numeric: tabular-nums;
}
