/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-d8cfqrhp9j] {
    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-d8cfqrhp9j] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-eskke5i3c6],
.components-reconnect-repeated-attempt-visible[b-eskke5i3c6],
.components-reconnect-failed-visible[b-eskke5i3c6],
.components-pause-visible[b-eskke5i3c6],
.components-resume-failed-visible[b-eskke5i3c6],
.components-rejoining-animation[b-eskke5i3c6] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-eskke5i3c6],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-eskke5i3c6],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-eskke5i3c6],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-eskke5i3c6],
#components-reconnect-modal.components-reconnect-retrying[b-eskke5i3c6],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-eskke5i3c6],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-eskke5i3c6],
#components-reconnect-modal.components-reconnect-failed[b-eskke5i3c6],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-eskke5i3c6] {
    display: block;
}


#components-reconnect-modal[b-eskke5i3c6] {
    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-eskke5i3c6 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-eskke5i3c6 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-eskke5i3c6 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-eskke5i3c6]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-eskke5i3c6 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-eskke5i3c6 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-eskke5i3c6 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-eskke5i3c6 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-eskke5i3c6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-eskke5i3c6] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-eskke5i3c6] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-eskke5i3c6] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-eskke5i3c6] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-eskke5i3c6] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-eskke5i3c6] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-eskke5i3c6 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-eskke5i3c6] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-eskke5i3c6 {
    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/Datenschutz.razor.rz.scp.css */
/* Outer: full-width und scrollbar — Scrollbar klebt am rechten Viewport-Rand */
.legal-page-outer[b-clohtf4k95] {
    flex: 1;
    width: 100%;
    overflow-y: auto;
    min-height: 0;
}

/* Inner: begrenzt + zentriert den eigentlichen Content (Breite wie Homepage MudContainer.Large) */
.legal-page-inner[b-clohtf4k95] {
    padding: 24px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Neutralisiert die Stream-globalen .legal-content-Eigenschaften (Scrollbar/Padding/Flex),
   damit der Outer/Inner-Wrapper das Layout steuert — gilt nur für diese Seite */
.legal-content[b-clohtf4k95] {
    flex: initial;
    padding: 0;
    overflow: visible;
}
/* /Components/Pages/Login.razor.rz.scp.css */
.login-container[b-hlrduhzi3d] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1rem;
}

.login-box[b-hlrduhzi3d] {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-box h1[b-hlrduhzi3d] {
    color: #fff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle[b-hlrduhzi3d] {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 2rem;
}

.login-error[b-hlrduhzi3d] {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.form-group[b-hlrduhzi3d] {
    margin-bottom: 1.25rem;
}

.form-group label[b-hlrduhzi3d] {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input[b-hlrduhzi3d] {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.form-input:focus[b-hlrduhzi3d] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.form-input[b-hlrduhzi3d]::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.checkbox-group[b-hlrduhzi3d] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group label[b-hlrduhzi3d] {
    margin-bottom: 0;
}

.remember-info[b-hlrduhzi3d] {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.remember-icon[b-hlrduhzi3d] {
    color: #667eea;
    font-weight: bold;
}

.login-btn[b-hlrduhzi3d] {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.login-btn:hover:not(:disabled)[b-hlrduhzi3d] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.login-btn:disabled[b-hlrduhzi3d] {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner[b-hlrduhzi3d] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-hlrduhzi3d 0.8s linear infinite;
}

@keyframes spin-b-hlrduhzi3d {
    to {
        transform: rotate(360deg);
    }
}

.login-spinner[b-hlrduhzi3d] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin-b-hlrduhzi3d 0.8s linear infinite;
    margin: 2rem auto;
}

.login-divider[b-hlrduhzi3d] {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.login-divider[b-hlrduhzi3d]::before,
.login-divider[b-hlrduhzi3d]::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.login-divider span[b-hlrduhzi3d] {
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.windows-login-btn[b-hlrduhzi3d] {
    width: 100%;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    transition: background 0.2s, border-color 0.2s;
    text-decoration: none;
    box-sizing: border-box;
}

.windows-login-btn:hover:not(:disabled)[b-hlrduhzi3d] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.windows-login-btn:disabled[b-hlrduhzi3d] {
    opacity: 0.7;
    cursor: not-allowed;
}

.two-factor-form[b-hlrduhzi3d] {
    text-align: center;
}

.two-factor-info[b-hlrduhzi3d] {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.two-factor-input[b-hlrduhzi3d] {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    font-family: monospace;
}

.back-btn[b-hlrduhzi3d] {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: color 0.2s, border-color 0.2s;
    text-decoration: none;
    display: block;
    text-align: center;
    box-sizing: border-box;
}

.back-btn:hover:not(:disabled)[b-hlrduhzi3d] {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.back-btn:disabled[b-hlrduhzi3d] {
    opacity: 0.7;
    cursor: not-allowed;
}

.login-footer[b-hlrduhzi3d] {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

[b-hlrduhzi3d] .validation-message {
    color: #f44336;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}
/* /Components/Pages/VPNRequired.razor.rz.scp.css */
.vpn-container[b-3yfsscmut9] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1rem;
}

.vpn-box[b-3yfsscmut9] {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 480px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.vpn-icon[b-3yfsscmut9] {
    color: #f59e0b;
    margin-bottom: 1.5rem;
}

.vpn-icon svg[b-3yfsscmut9] {
    width: 64px;
    height: 64px;
}

.vpn-box h1[b-3yfsscmut9] {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vpn-message[b-3yfsscmut9] {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.vpn-info[b-3yfsscmut9] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.vpn-info h3[b-3yfsscmut9] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.vpn-info ol[b-3yfsscmut9] {
    margin: 0;
    padding-left: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.vpn-info li[b-3yfsscmut9] {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.vpn-info li:last-child[b-3yfsscmut9] {
    margin-bottom: 0;
}

.vpn-note[b-3yfsscmut9] {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.vpn-note strong[b-3yfsscmut9] {
    color: #f59e0b;
}

.retry-btn[b-3yfsscmut9] {
    display: block;
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.retry-btn:hover[b-3yfsscmut9] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: #fff;
}

.vpn-links[b-3yfsscmut9] {
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

.vpn-links a[b-3yfsscmut9] {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.vpn-links a:hover[b-3yfsscmut9] {
    color: #fff;
}

.vpn-links .separator[b-3yfsscmut9] {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

.vpn-footer[b-3yfsscmut9] {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}
