/* /Authentification/LoginPage.razor.rz.scp.css */
/* Übernimmt das Basis-Styling von Index.razor.css */

.login-container[b-07j905ht5n] {
    max-width: 550px;
    margin: 3rem auto;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #001f3f;
}

/* NEU: Header innerhalb des Containers */
.login-header[b-07j905ht5n] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

    .login-header h3[b-07j905ht5n] {
        font-size: 1.8rem;
        font-weight: 600;
        color: #0a2e5a;
        margin: 0;
    }

    .login-header img[b-07j905ht5n] {
        height: 40px;
    }

/* Formular-Styling */
.form-group[b-07j905ht5n] {
    margin-bottom: 1.5rem;
}

    .form-group label[b-07j905ht5n] {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: #495057;
    }

.form-control[b-07j905ht5n] {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .form-control:focus[b-07j905ht5n] {
        outline: none;
        border-color: #d4a406;
        box-shadow: 0 0 0 3px rgba(212, 164, 6, 0.25);
    }

/* Button-Styling */
.button-group[b-07j905ht5n] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.btn[b-07j905ht5n] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

    .btn:disabled[b-07j905ht5n] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.btn-icon[b-07j905ht5n] {
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

.btn-email[b-07j905ht5n] {
    background-color: #001f3f;
    color: white;
}

    .btn-email:hover:not(:disabled)[b-07j905ht5n] {
        background-color: #0a2e5a;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

.btn-sms[b-07j905ht5n] {
    background-color: #ffffff;
    color: #001f3f;
    border: 2px solid #001f3f;
}

    .btn-sms:hover:not(:disabled)[b-07j905ht5n] {
        background-color: #f0f2f5;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Spezielles Styling für PIN-Eingabe */
.pin-info[b-07j905ht5n] {
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 1rem;
}

.pin-input-field[b-07j905ht5n] {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.5rem; /* Simuliert OTP-Boxen */
}

/* NEU: Styling für Dialoge */
.dialog-backdrop[b-07j905ht5n] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.dialog-box[b-07j905ht5n] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    width: 90%;
    max-width: 400px;
    text-align: center;
}

    .dialog-box h4[b-07j905ht5n] {
        font-size: 1.5rem;
        color: #0a2e5a;
        margin-top: 0;
        margin-bottom: 1rem;
    }

    .dialog-box p[b-07j905ht5n] {
        margin-bottom: 1.5rem;
        color: #333;
    }

.btn-dialog-close[b-07j905ht5n] {
    background-color: #001f3f;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* NEU: Styling für Spinner */
.spinner-overlay[b-07j905ht5n] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.spinner[b-07j905ht5n] {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #001f3f;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin-b-07j905ht5n 1s linear infinite;
}

@keyframes spin-b-07j905ht5n {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Components/Layout/EmptyLayout.razor.rz.scp.css */
.page[b-kcfggbltuz] {
    position: relative;
    display: flex;
    flex-direction: column;
  
}

main[b-kcfggbltuz] {
    flex: 1;
    background: #f0f2f5;
    height:100vh;
}

.sidebar[b-kcfggbltuz] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-kcfggbltuz] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-kcfggbltuz]  a, .top-row[b-kcfggbltuz]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-kcfggbltuz]  a:hover, .top-row[b-kcfggbltuz]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-kcfggbltuz]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row[b-kcfggbltuz] {
        justify-content: space-between;
    }

        .top-row[b-kcfggbltuz]  a, .top-row[b-kcfggbltuz]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page[b-kcfggbltuz] {
        flex-direction: row;
    }

    .sidebar[b-kcfggbltuz] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-kcfggbltuz] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-kcfggbltuz]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-kcfggbltuz], article[b-kcfggbltuz] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-kcfggbltuz] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-kcfggbltuz] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Basis-Layout fr die ganze Seite */
.page[b-2v6zl7mnqp] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f0f2f5;
}

/* Container fr Seitenleiste und Hauptinhalt */
.main-body[b-2v6zl7mnqp] {
    display: grid;
    grid-template-columns: 150px 1fr; /* <<< HIER: Breite der Seitenleiste reduziert */
    flex: 1;
    gap: 0.5rem; /* Fgt einen Abstand zwischen Men und Inhalt hinzu */
    margin: 0 1rem; /* Richtet sich am Rand des Headers aus */
}

/* Haupt-Inhaltsbereich */
main[b-2v6zl7mnqp] {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    background-color: #ffffff; /* Weier Hintergrund fr den Inhaltsbereich */
    border-radius: 15px; /* Abgerundete Ecken fr den Inhaltsbereich */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Leichter Schatten */
}

.content[b-2v6zl7mnqp] {
    width: 100%;
    max-width: 3840px;
}

/* Kopfzeile (unverndert) */
.app-header[b-2v6zl7mnqp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #0a2e5a, #001f3f);
    color: white;
    border-bottom: 3px solid #d4a406;
    border-left: 3px solid #d4a406;
    border-right: 3px solid #d4a406;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 15px 15px 15px 15px;
    margin: 1rem 1rem 0; /* <<< OBEREN Abstand des Mens entfernt */
    position: relative;
    z-index: 10;
    margin-bottom: 5px;
}

/* Rest der CSS-Datei bleibt wie zuvor... */

.logo-container[b-2v6zl7mnqp] {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

    .logo-container img[b-2v6zl7mnqp] {
        height: 50px;
        width: auto;
    }

    .logo-container.logo-right[b-2v6zl7mnqp] {
        justify-content: flex-end;
    }

.title-container[b-2v6zl7mnqp] {
    flex: 2;
    text-align: center;
}

    .title-container h1[b-2v6zl7mnqp] {
        margin: 0;
        font-size: 2.2rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .title-container h2[b-2v6zl7mnqp] {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 300;
        color: #e0e0e0;
        letter-spacing: 0.5px;
    }

.app-footer[b-2v6zl7mnqp] {
    text-align: center;
    padding: 1rem;
    font-size: 0.8rem;
    color: #6c757d;
    background-color: transparent;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Hauptcontainer fr die Seitenleiste mit abgerundeten Ecken */
.sidebar[b-hb6p246n9v] {
    background: #001f3f;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    border-radius: 15px; /* <<< HIER: Abgerundete Ecken */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Passender Schatten */
    overflow: hidden; /* Stellt sicher, dass die inneren Elemente die Ecken nicht berlappen */
}

/* Liste der Navigationspunkte */
.nav-list[b-hb6p246n9v] {
    list-style: none;
    padding: 0.5rem 0; /* Etwas vertikaler Abstand */
    margin: 0;
    width: 100%;
}

.nav-item[b-hb6p246n9v] {
    margin-left: 15px;
}

/* Link-Styling */
.nav-link[b-hb6p246n9v] {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem; /* Etwas schmaler */
    margin: 0.25rem 0.75rem; /* Abstand zwischen den Links */
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 8px; /* Abgerundete Ecken auch fr die Links */
    transition: background-color 0.2s, color 0.2s;
}

    /* Icon-Styling (jetzt fr .bi-Klassen) */
    .nav-link .bi[b-hb6p246n9v] {
        font-size: 1.2rem; /* Gre der Icons */
        margin-right: 1rem;
        flex-shrink: 0;
        transition: color 0.2s;
        width: 24px; /* Feste Breite fr saubere Ausrichtung */
        text-align: center;
    }

.nav-text[b-hb6p246n9v] {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Hover-Effekt */
.nav-link:hover[b-hb6p246n9v] {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

/* Styling fr den aktiven Link */
.nav-link.active[b-hb6p246n9v] {
    background-color: #d4a406; /* Goldener Hintergrund fr den aktiven Link */
    color: #001f3f; /* Dunkelblauer Text fr Kontrast */
    font-weight: 600;
}

    .nav-link.active .bi[b-hb6p246n9v] {
        color: #001f3f; /* Dunkelblaues Icon fr Kontrast */
    }

/* Admin-Bereich Titel */
.nav-header[b-hb6p246n9v] {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #d4a406;
    padding: 1rem 1.5rem 0.5rem;
    letter-spacing: 1px;
}

/* Trennlinie vor dem Admin-Bereich */
.nav-separator[b-hb6p246n9v] {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0.5rem 1.5rem;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-f6w8io0mol],
.components-reconnect-repeated-attempt-visible[b-f6w8io0mol],
.components-reconnect-failed-visible[b-f6w8io0mol],
.components-pause-visible[b-f6w8io0mol],
.components-resume-failed-visible[b-f6w8io0mol],
.components-rejoining-animation[b-f6w8io0mol] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-f6w8io0mol {
    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;
    }
}
