/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-6rjk338qx4] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-6rjk338qx4] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-g2gooflrvs],
.components-reconnect-repeated-attempt-visible[b-g2gooflrvs],
.components-reconnect-failed-visible[b-g2gooflrvs],
.components-pause-visible[b-g2gooflrvs],
.components-resume-failed-visible[b-g2gooflrvs],
.components-rejoining-animation[b-g2gooflrvs] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-g2gooflrvs],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-g2gooflrvs],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-g2gooflrvs],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-g2gooflrvs],
#components-reconnect-modal.components-reconnect-retrying[b-g2gooflrvs],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-g2gooflrvs],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-g2gooflrvs],
#components-reconnect-modal.components-reconnect-failed[b-g2gooflrvs],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-g2gooflrvs] {
    display: block;
}


#components-reconnect-modal[b-g2gooflrvs] {
    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-g2gooflrvs 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-g2gooflrvs 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-g2gooflrvs 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-g2gooflrvs]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-g2gooflrvs 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-g2gooflrvs {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-g2gooflrvs {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-g2gooflrvs {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-g2gooflrvs] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-g2gooflrvs] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-g2gooflrvs] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-g2gooflrvs] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-g2gooflrvs] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-g2gooflrvs] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-g2gooflrvs] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-g2gooflrvs 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-g2gooflrvs] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-g2gooflrvs {
    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/Home.razor.rz.scp.css */
.simulator-shell[b-sirtbryjyq] {
    display: grid;
    grid-template-columns: 20% 50% 30%;
    gap: 1.5rem;
    padding: 1.5rem;
    align-items: start;
    min-height: 100vh;
    box-sizing: border-box;
    background: #f5f6f8;
    font-family: "Segoe UI", system-ui, sans-serif;
}

@media (max-width: 1000px) {
    .simulator-shell[b-sirtbryjyq] {
        grid-template-columns: 1fr;
    }
}

/* ── Leták vlevo ─────────────────────────────────────────── */

.col-leaflet[b-sirtbryjyq] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
    position: sticky;
    top: 1.5rem;
}

.leaflet-logo[b-sirtbryjyq] {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: .75rem;
}

.leaflet-qr[b-sirtbryjyq] {
    width: 100%;
    max-width: 160px;
    margin: 0 auto .75rem;
}

.leaflet-qr svg[b-sirtbryjyq] {
    width: 100%;
    height: auto;
    display: block;
}

.leaflet-qr-text[b-sirtbryjyq] {
    display: block;
    font-size: .7rem;
    color: #999;
    word-break: break-all;
    margin: 0 0 1rem;
}

.leaflet-nazev[b-sirtbryjyq] {
    font-size: 1rem;
    margin: 0 0 .25rem;
    color: #1a1a2e;
}

.leaflet-popis[b-sirtbryjyq] {
    font-size: .8rem;
    color: #777;
    margin: 0;
}

.leaflet-poster-keys[b-sirtbryjyq] {
    margin-top: 1rem;
    padding-top: .75rem;
    border-top: 1px solid #eee;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.leaflet-poster-keys label[b-sirtbryjyq] {
    font-size: .7rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.leaflet-poster-hint[b-sirtbryjyq] {
    display: block;
    margin-top: .4rem;
    font-size: .68rem;
    color: #9a6700;
}

/* ── Obsluha uprostřed ───────────────────────────────────── */

.col-obsluha[b-sirtbryjyq] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
    overflow: hidden;
}

.provoz-tabs[b-sirtbryjyq] {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.tab[b-sirtbryjyq] {
    flex: 1 1 auto;
    border: none;
    background: transparent;
    padding: .9rem .75rem;
    cursor: pointer;
    font-size: .85rem;
    color: #555;
    border-bottom: 2px solid transparent;
}

.tab:hover[b-sirtbryjyq] {
    background: #f0f1f3;
}

.tab.active[b-sirtbryjyq] {
    color: #1a73e8;
    border-bottom-color: #1a73e8;
    background: white;
    font-weight: 600;
}

.tab-icon[b-sirtbryjyq] {
    margin-right: .35rem;
}

.provoz-content[b-sirtbryjyq] {
    padding: 2rem 1.5rem;
}

/* ── API panel vpravo ────────────────────────────────────── */

.col-api[b-sirtbryjyq] {
    background: #1e1e2e;
    color: #e6e6e6;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
    position: sticky;
    top: 1.5rem;
}

.col-api h3[b-sirtbryjyq] {
    margin: 0 0 1rem;
    font-size: .9rem;
    color: #aab;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.empty-hint[b-sirtbryjyq] {
    color: #888;
    font-size: .85rem;
}

.api-block[b-sirtbryjyq] {
    margin-bottom: 1rem;
}

.api-block-header[b-sirtbryjyq] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .75rem;
    color: #9aa;
    margin-bottom: .35rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.status-dot[b-sirtbryjyq] {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: .4rem;
}

.btn-copy[b-sirtbryjyq] {
    background: #33334d;
    color: #e6e6e6;
    border: none;
    border-radius: 6px;
    padding: .25rem .6rem;
    font-size: .7rem;
    cursor: pointer;
    text-transform: none;
    letter-spacing: normal;
}

.btn-copy:hover[b-sirtbryjyq] {
    background: #45455f;
}

.api-block pre[b-sirtbryjyq] {
    background: #12121c;
    border-radius: 8px;
    padding: .75rem;
    font-size: .75rem;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
    margin: 0;
}
