/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* MainLayout-spezifisches scoped CSS.
   Die meisten Stiles kommen aus dem globalen hitster.css — hier nur das,
   was wirklich nur fürs Layout gilt und nicht woanders durchschlagen darf. */

/* (Layout-spezifische Overrides können hier ergänzt werden.) */
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-mptz3c3ic9],
.components-reconnect-repeated-attempt-visible[b-mptz3c3ic9],
.components-reconnect-failed-visible[b-mptz3c3ic9],
.components-pause-visible[b-mptz3c3ic9],
.components-resume-failed-visible[b-mptz3c3ic9],
.components-rejoining-animation[b-mptz3c3ic9] {
    display: none;
}

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


#components-reconnect-modal[b-mptz3c3ic9] {
    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-mptz3c3ic9 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-mptz3c3ic9 {
    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/Shared/CookieConsent.razor.rz.scp.css */
.cookie-consent[b-6qded6shsw] {
    position: fixed;
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 1080;
    max-width: min(340px, calc(100vw - 2rem));
    pointer-events: none;
}

.cookie-consent-inner[b-6qded6shsw] {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.6rem;
    border-radius: 11px;
    background: rgba(11, 10, 22, 0.95);
    border: 1px solid var(--border-soft, rgba(255, 255, 255, 0.12));
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    animation: cookie-rise-b-6qded6shsw 0.3s ease-out;
}

.cookie-consent-icon[b-6qded6shsw] {
    flex: none;
    font-size: 1rem;
    color: var(--accent-1);
}

.cookie-consent-text[b-6qded6shsw] {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.3;
    color: #c9c7d6;
}

.cookie-consent-btn[b-6qded6shsw] {
    flex: none;
    padding: 0.3rem 0.7rem;
    border-radius: 8px;
    border: 1px solid var(--accent-3, #4ade80);
    background: transparent;
    color: var(--accent-3, #4ade80);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.cookie-consent-btn:hover[b-6qded6shsw] {
    background: var(--accent-3, #4ade80);
    color: #07060f;
}

@keyframes cookie-rise-b-6qded6shsw {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* /Components/Shared/LanguagePicker.razor.rz.scp.css */
/* Sprachumschalter: nutzt die globalen .theme-* Klassen für den Look, öffnet per Klick
   (Backdrop schließt bei Klick daneben) — kein JS/Inline-Skript, CSP bleibt intakt. */
.lang-picker[b-db340hy4u6] {
    position: relative;
}

/* Button trägt die aktuelle Flagge + das Übersetzen-Icon; über dem Backdrop, damit ein
   erneuter Klick togglet statt nur zu schließen. */
.lang-btn[b-db340hy4u6] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    width: auto;
    position: relative;
    z-index: 1001;
}

/* Transparenter Vollbild-Backdrop fängt Klicks außerhalb des Menüs ab → schließt. */
.lang-backdrop[b-db340hy4u6] {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: transparent;
}

/* Menü über dem Backdrop. (.open kommt aus dem globalen .theme-menu-Stil = display:flex.) */
.lang-menu[b-db340hy4u6] {
    z-index: 1001;
}

.lang-menu .theme-option[b-db340hy4u6] {
    text-decoration: none;
}

.lang-flag[b-db340hy4u6] {
    font-size: 1.1rem;
    line-height: 1;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}
