@import '_content/Vox.Ui/Vox.Ui.dtdc5tzrhi.bundle.scp.css';

/* /Components/AiGorSwitch.razor.rz.scp.css */
/*
    Tre pastiglie sulla stessa riga del titolo. Piccole di proposito: sono un interruttore fra
    prototipi, non la navigazione dell'applicazione — quella sta nel cassetto.
*/

.aigor-switch[b-tqu89qgiq5] {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.aigor-switch[b-tqu89qgiq5]  .aigor-switch-link {
    padding: 0.28rem 0.7rem;
    border: 1px solid var(--eu-line-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #c8d8f0;
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.aigor-switch[b-tqu89qgiq5]  .aigor-switch-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.aigor-switch[b-tqu89qgiq5]  .aigor-switch-link.active {
    background: linear-gradient(135deg, var(--eu-accent), var(--eu-accent-deep));
    border-color: transparent;
    color: #ffffff;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/*
    La struttura: barra in alto fissa, cassetto che scorre da sinistra, contenuto sotto.

    Il cassetto è in posizione fissa e non in colonna: se occupasse una colonna della griglia,
    aprirlo restringerebbe il contenuto e il volto di AiGor — che è un canvas con un rapporto
    d'aspetto — si ridisegnerebbe a ogni apertura. Sovrapposto, la pagina sotto non si accorge
    di niente.
*/

.page[b-3tmcg3p71m] {
    min-height: 100vh;
    background: var(--eu-bg);
}

/* Lo stato del cassetto vive qui: nascosto alla vista, non alla tastiera. */
.vox-nav-state[b-3tmcg3p71m] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* ===== Barra ===== */
.vox-topbar[b-3tmcg3p71m] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 56px;
    padding: 0 1.25rem;
    background: var(--eu-topbar);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.vox-brand[b-3tmcg3p71m] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.vox-brand-mark[b-3tmcg3p71m] {
    background: linear-gradient(135deg, #ffffff 40%, #7ab8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vox-topbar-gap[b-3tmcg3p71m] {
    flex: 1;
}

.vox-topbar-link[b-3tmcg3p71m] {
    color: #c8d8f0;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    white-space: nowrap;
}

.vox-topbar-link:hover[b-3tmcg3p71m] {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

/* ===== Il pulsante ===== */
.vox-nav-button[b-3tmcg3p71m] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
}

.vox-nav-button:hover[b-3tmcg3p71m] {
    background: rgba(255, 255, 255, 0.12);
}

/* Tre righe disegnate con i bordi: nessuna immagine da caricare per sei pixel di tratto. */
.vox-nav-bars[b-3tmcg3p71m],
.vox-nav-bars[b-3tmcg3p71m]::before,
.vox-nav-bars[b-3tmcg3p71m]::after {
    display: block;
    width: 1.1rem;
    height: 2px;
    background: #c8d8f0;
    border-radius: 2px;
}

.vox-nav-bars[b-3tmcg3p71m] {
    position: relative;
}

.vox-nav-bars[b-3tmcg3p71m]::before,
.vox-nav-bars[b-3tmcg3p71m]::after {
    content: "";
    position: absolute;
    left: 0;
}

.vox-nav-bars[b-3tmcg3p71m]::before { top: -6px; }
.vox-nav-bars[b-3tmcg3p71m]::after { top: 6px; }

/* ===== Cassetto ===== */
.vox-shell[b-3tmcg3p71m] {
    position: relative;
}

.vox-drawer[b-3tmcg3p71m] {
    position: fixed;
    top: 56px;
    bottom: 0;
    left: 0;
    width: 250px;
    background: linear-gradient(180deg, #16202c 0%, #101a24 100%);
    border-right: 1px solid var(--eu-line);
    overflow-y: auto;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.18s ease;
}

.vox-nav-state:checked ~ .vox-shell .vox-drawer[b-3tmcg3p71m] {
    transform: translateX(0);
}

.vox-scrim[b-3tmcg3p71m] {
    position: fixed;
    inset: 56px 0 0 0;
    background: rgba(6, 12, 18, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
    z-index: 998;
}

.vox-nav-state:checked ~ .vox-shell .vox-scrim[b-3tmcg3p71m] {
    opacity: 1;
    pointer-events: auto;
}

/* ===== Contenuto ===== */
.content[b-3tmcg3p71m] {
    padding: 1.75rem 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 640.98px) {
    .content[b-3tmcg3p71m] {
        padding: 1.25rem 1rem 2.5rem;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/*
    Le voci. Stesso trattamento dei link della barra di start: niente icone, perché con dieci
    voci in tre gruppi il testo basta a distinguerle e un'icona sbagliata confonde più di
    quanto un'icona giusta aiuti.
*/

.vox-nav[b-3vhsea7g2k] {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0.6rem 1.5rem;
    gap: 0.1rem;
}

.vox-nav-group[b-3vhsea7g2k] {
    color: var(--eu-faint);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1rem 0.65rem 0.35rem;
}

.vox-nav-group:first-child[b-3vhsea7g2k] {
    padding-top: 0.35rem;
}

.vox-nav[b-3vhsea7g2k]  .vox-nav-link {
    display: block;
    padding: 0.5rem 0.65rem;
    border-radius: 7px;
    color: #c8d8f0;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.vox-nav[b-3vhsea7g2k]  .vox-nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

/* L'attiva si riconosce dal fondo e dal filo a sinistra: il solo colore del testo non basta
   a trovarla con la coda dell'occhio mentre il cassetto si sta già richiudendo. */
.vox-nav[b-3vhsea7g2k]  .vox-nav-link.active {
    background: rgba(74, 158, 255, 0.16);
    color: #ffffff;
    box-shadow: inset 2px 0 0 var(--eu-accent);
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-au7bydwi5y],
.components-reconnect-repeated-attempt-visible[b-au7bydwi5y],
.components-reconnect-failed-visible[b-au7bydwi5y],
.components-pause-visible[b-au7bydwi5y],
.components-resume-failed-visible[b-au7bydwi5y],
.components-rejoining-animation[b-au7bydwi5y] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-au7bydwi5y],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-au7bydwi5y],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-au7bydwi5y],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-au7bydwi5y],
#components-reconnect-modal.components-reconnect-retrying[b-au7bydwi5y],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-au7bydwi5y],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-au7bydwi5y],
#components-reconnect-modal.components-reconnect-failed[b-au7bydwi5y],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-au7bydwi5y] {
    display: block;
}


#components-reconnect-modal[b-au7bydwi5y] {
    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-au7bydwi5y 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-au7bydwi5y 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-au7bydwi5y 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-au7bydwi5y]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-au7bydwi5y 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-au7bydwi5y {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-au7bydwi5y {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-au7bydwi5y {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-au7bydwi5y] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-au7bydwi5y] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-au7bydwi5y] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-au7bydwi5y] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-au7bydwi5y] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-au7bydwi5y] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-au7bydwi5y] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-au7bydwi5y 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-au7bydwi5y] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-au7bydwi5y {
    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;
    }
}
