/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Rahmen der Anwendung: Kopfzeile, Inhaltsbereich, Fußzeile. */

.site-header[b-86rihgdj6e] {
    position: sticky;
    z-index: 20;
    top: 0;
    background: rgba(9, 13, 16, .86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.site-header-inner[b-86rihgdj6e] {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 10px 22px;
}

.brand[b-86rihgdj6e] {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    min-width: 0;
    color: var(--ink);
    font-weight: 860;
    letter-spacing: .01em;
    text-decoration: none;
}

.brand:hover .brand-title[b-86rihgdj6e] {
    color: var(--accent-hover);
}

.brand-mark[b-86rihgdj6e] {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), var(--blue));
    border-radius: 9px;
    color: var(--accent-ink);
    font-size: .82rem;
}

.brand-title[b-86rihgdj6e] {
    overflow: hidden;
    font-size: 1.06rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .16s ease;
}

.wrap[b-86rihgdj6e] {
    padding-top: 26px;
}

.app-version[b-86rihgdj6e] {
    border-top: 1px solid var(--line);
    margin-top: 34px;
    padding-top: 18px;
}

@media (max-width: 860px) {
    .site-header-inner[b-86rihgdj6e] {
        gap: 10px;
        padding: 8px 14px;
    }

    .brand-title[b-86rihgdj6e] {
        font-size: .98rem;
    }

    .wrap[b-86rihgdj6e] {
        padding-top: 18px;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Hauptnavigation. Auf schmalen Bildschirmen klappt sie über das
   versteckte Kontrollkästchen (.nav-toggle) auf - ganz ohne JavaScript. */

.mainnav[b-u2z7kvuuis] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    min-width: 0;
}

.nav-toggle[b-u2z7kvuuis] {
    position: absolute;
    width: 1px;
    height: 1px;
    min-height: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}

.nav-burger[b-u2z7kvuuis] {
    display: none;
    gap: 8px;
    align-items: center;
    min-height: 40px;
    margin: 0;
    padding: 0 14px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    color: var(--ink);
    cursor: pointer;
    font-size: .9rem;
    font-weight: 560;
    user-select: none;
}

.nav-burger:hover[b-u2z7kvuuis] {
    border-color: var(--accent);
}

.nav-toggle:focus-visible + .nav-burger[b-u2z7kvuuis] {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.nav-links[b-u2z7kvuuis] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.nav-links a[b-u2z7kvuuis] {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--muted);
    font-size: .92rem;
    font-weight: 520;
    text-decoration: none;
    white-space: nowrap;
    transition: background .14s ease, color .14s ease, border-color .14s ease;
}

.nav-links a:hover[b-u2z7kvuuis] {
    background: rgba(255, 255, 255, .06);
    color: var(--ink);
}

.nav-links a.active[b-u2z7kvuuis] {
    background: rgba(37, 199, 183, .15);
    border-color: transparent;
    color: var(--accent-hover);
    font-weight: 620;
}

.nav-user[b-u2z7kvuuis] {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    max-width: 190px;
    margin-left: 6px;
    padding: 0 10px;
    color: var(--muted);
    font-size: .86rem;
    font-weight: 520;
}

.nav-user-name[b-u2z7kvuuis] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-logout[b-u2z7kvuuis] {
    display: inline-flex;
    margin: 0;
}

.nav-logout button[b-u2z7kvuuis] {
    min-height: 36px;
    padding: 0 12px;
    font-size: .85rem;
}

@media (max-width: 980px) {
    .mainnav[b-u2z7kvuuis] {
        flex: 1 1 100%;
        justify-content: flex-end;
    }

    .nav-burger[b-u2z7kvuuis] {
        display: inline-flex;
    }

    .nav-links[b-u2z7kvuuis] {
        display: none;
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 8px;
        background: color-mix(in srgb, var(--panel) 92%, #ffffff 8%);
        border: 1px solid var(--line);
        border-radius: 8px;
    }

    .nav-toggle:checked ~ .nav-links[b-u2z7kvuuis] {
        display: flex;
    }

    .nav-links a[b-u2z7kvuuis] {
        min-height: 44px;
    }

    .nav-user[b-u2z7kvuuis] {
        max-width: none;
        padding: 6px 10px;
    }

    .nav-logout[b-u2z7kvuuis],
    .nav-logout button[b-u2z7kvuuis] {
        width: 100%;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-la91jdwdks],
.components-reconnect-repeated-attempt-visible[b-la91jdwdks],
.components-reconnect-failed-visible[b-la91jdwdks],
.components-pause-visible[b-la91jdwdks],
.components-resume-failed-visible[b-la91jdwdks],
.components-rejoining-animation[b-la91jdwdks] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-la91jdwdks],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-la91jdwdks],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-la91jdwdks],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-la91jdwdks],
#components-reconnect-modal.components-reconnect-retrying[b-la91jdwdks],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-la91jdwdks],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-la91jdwdks],
#components-reconnect-modal.components-reconnect-failed[b-la91jdwdks],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-la91jdwdks] {
    display: block;
}


#components-reconnect-modal[b-la91jdwdks] {
    color-scheme: dark;
    background-color: #151b20;
    color: #f7fbfb;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 1px solid #2c373f;
    border-radius: 0.5rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .5);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-la91jdwdks 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-la91jdwdks 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-la91jdwdks 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-la91jdwdks]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-la91jdwdks 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-la91jdwdks {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-la91jdwdks {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-la91jdwdks {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-la91jdwdks] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-la91jdwdks] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-la91jdwdks] {
    border: 0;
    background-color: #25c7b7;
    color: #04201d;
    font-weight: 800;
    padding: 8px 24px;
    border-radius: 8px;
    cursor: pointer;
}

    #components-reconnect-modal button:hover[b-la91jdwdks] {
        background-color: #61e3d6;
    }

    #components-reconnect-modal button:active[b-la91jdwdks] {
        background-color: #25c7b7;
    }

.components-rejoining-animation[b-la91jdwdks] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-la91jdwdks] {
        position: absolute;
        border: 3px solid #25c7b7;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-la91jdwdks 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-la91jdwdks] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-la91jdwdks {
    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/Pdf/Parts/PdfToolbar.razor.rz.scp.css */
/* Feinschliff der Werkzeugleiste.
   app.css gibt Formularfeldern grundsätzlich volle Breite - in der Leiste sollen
   Auswahlfeld und Knöpfe aber nur so breit sein wie nötig. */

.pdf-toolbar select[b-q3rqfwlxy3] {
    width: auto;
    min-width: 170px;
    max-width: 100%;
}

.pdf-toolbar input[type="number"][b-q3rqfwlxy3] {
    width: 72px;
}

.pdf-toolbar input[type="search"][b-q3rqfwlxy3] {
    width: min(260px, 42vw);
}
/* /Components/Pages/Rp/CampaignHome.razor.rz.scp.css */
/* Hervorgehobene Regelwerk-Kachel der Bereichsübersicht.
   Sie steht bewusst über den vier Abteilungen: das Regelwerk ist der Einstieg. */

.rulebook[b-s1u4s0w1dy] {
    margin: 18px 0;
}

.rulebook .doc-card.featured[b-s1u4s0w1dy] {
    border-left-width: 5px;
    border-left-color: var(--accent);
    background: color-mix(in srgb, var(--panel-strong) 88%, var(--accent) 12%);
}

.rulebook .doc-card.featured h3[b-s1u4s0w1dy] {
    font-size: 1.15rem;
}
/* /Components/Pages/Rp/Chats/ChatEditorForm.razor.rz.scp.css */
/* Formular einer Chat-Zusammenfassung: Textfeld, Charakterauswahl, freie Namen. */

.chat-text-input[b-fessm3gs43] {
    width: 100%;
    min-height: 320px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

.chat-picker[b-fessm3gs43] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.chat-pick[b-fessm3gs43] {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel-strong);
    color: var(--ink);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.chat-pick:hover[b-fessm3gs43],
.chat-pick:focus-visible[b-fessm3gs43] {
    border-color: var(--accent);
}

.chat-pick.selected[b-fessm3gs43] {
    border-color: var(--accent);
    box-shadow: inset 0 0 0 1px var(--accent);
}

.chat-pick-portrait[b-fessm3gs43] {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--thumb);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.chat-pick-portrait img[b-fessm3gs43] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-pick-body[b-fessm3gs43] {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.chat-pick-name[b-fessm3gs43] {
    overflow: hidden;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chat-pick-meta[b-fessm3gs43] {
    overflow: hidden;
    color: var(--muted);
    font-size: .82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chat-pick-mark[b-fessm3gs43] {
    margin-left: auto;
    color: var(--accent);
    font-weight: 800;
}

.chat-selected[b-fessm3gs43] {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.chat-row[b-fessm3gs43] {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) minmax(180px, 2fr) auto;
    gap: 8px;
    align-items: center;
}

.chat-row-name[b-fessm3gs43] {
    overflow: hidden;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .chat-picker[b-fessm3gs43] {
        grid-template-columns: 1fr;
    }

    .chat-row[b-fessm3gs43] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Rp/Chats/ChatList.razor.rz.scp.css */
/* Uebersicht der Chat-Zusammenfassungen. Farben kommen aus den Variablen von app.css. */

.chat-list[b-byb8yg1hqy] {
    display: grid;
    gap: 14px;
}

.chat-entry[b-byb8yg1hqy] {
    display: grid;
    gap: 8px;
    margin: 0;
}

.chat-entry-head[b-byb8yg1hqy] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.chat-range[b-byb8yg1hqy] {
    white-space: nowrap;
}

.chat-title[b-byb8yg1hqy] {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
}

.chat-title a[b-byb8yg1hqy] {
    color: var(--ink);
    text-decoration: none;
}

.chat-title a:hover[b-byb8yg1hqy],
.chat-title a:focus-visible[b-byb8yg1hqy] {
    color: var(--accent);
    text-decoration: underline;
}

.chat-teaser[b-byb8yg1hqy] {
    margin: 0;
    overflow-wrap: anywhere;
}

.chat-players[b-byb8yg1hqy] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chat-avatar[b-byb8yg1hqy] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--panel);
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.chat-avatar img[b-byb8yg1hqy] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-avatar:hover[b-byb8yg1hqy],
.chat-avatar:focus-visible[b-byb8yg1hqy] {
    border-color: var(--accent);
}

.chat-avatar.guest[b-byb8yg1hqy] {
    border-style: dashed;
}

.chat-avatar.more[b-byb8yg1hqy] {
    font-size: 12px;
}

.chat-names[b-byb8yg1hqy],
.chat-foot[b-byb8yg1hqy] {
    overflow-wrap: anywhere;
}

@media (max-width: 640px) {
    .chat-avatar[b-byb8yg1hqy] {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .chat-title[b-byb8yg1hqy] {
        font-size: 18px;
    }
}
/* /Components/Pages/Rp/Chats/ChatView.razor.rz.scp.css */
/* Einzelansicht einer Chat-Zusammenfassung, inklusive Druckbild. */

.chat-sheet[b-ws7v2cxvfq] {
    display: grid;
    gap: 12px;
}

.chat-period[b-ws7v2cxvfq] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.chat-range[b-ws7v2cxvfq] {
    white-space: nowrap;
}

.chat-heading[b-ws7v2cxvfq] {
    margin: 0;
    font-size: 24px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.chat-body[b-ws7v2cxvfq] {
    display: grid;
    gap: 12px;
    max-width: 78ch;
}

.chat-paragraph[b-ws7v2cxvfq] {
    margin: 0;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    line-height: 1.65;
}

.chat-meta[b-ws7v2cxvfq] {
    padding-top: 6px;
    border-top: 1px solid var(--line);
    overflow-wrap: anywhere;
}

.chat-guests[b-ws7v2cxvfq] {
    display: grid;
    gap: 6px;
    margin-top: 14px;
}

@media (max-width: 640px) {
    .chat-heading[b-ws7v2cxvfq] {
        font-size: 20px;
    }
}

@media print {
    .chat-sheet[b-ws7v2cxvfq],
    .chat-guests[b-ws7v2cxvfq] {
        border: 0;
        background: none;
        box-shadow: none;
    }

    .chat-body[b-ws7v2cxvfq] {
        max-width: none;
    }

    .chat-paragraph[b-ws7v2cxvfq] {
        line-height: 1.45;
    }
}
