/* /Components/Layout/AdminLayout.razor.rz.scp.css */
/* Shell: 3-Zonen-Grid*/
.admin-shell[b-sccjt50n87] {
    display: grid;
    grid-template-rows: 52px 1fr;
    grid-template-columns: 220px 1fr;
    height: 100vh;
    background: #f5f8fc;
}

/* Topbar  */
.admin-topbar[b-sccjt50n87] {
    grid-column: 1 / -1;
    background: #ffffff;
    border-bottom: 1px solid #dde6f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    z-index: 20;
}

.admin-topbar-left[b-sccjt50n87] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-topbar-logo[b-sccjt50n87] {
    height: 40px;
    object-fit: contain;
}

.admin-topbar-divider[b-sccjt50n87] {
    display: inline-block;
    width: 1px;
    height: 18px;
    background: #dde6f0;
}

.admin-topbar-name[b-sccjt50n87] {
    font-size: 13px;
    font-weight: 700;
    color: #0f1f3d;
    letter-spacing: -0.01em;
}

.admin-topbar-right[b-sccjt50n87] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-logout-btn[b-sccjt50n87] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1.5px solid #dde6f0;
    background: white;
    color: #6b7b8d;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    font-family: inherit;
    transition: all 0.15s;
}

    .admin-logout-btn:hover[b-sccjt50n87] {
        border-color: #fca5a5;
        color: #dc2626;
        background: #fef2f2;
    }

.admin-back-btn[b-sccjt50n87]{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 8px;
    border: 1.5px solid #dde6f0;
    background: white;
    color: #6b7b8d;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
}

.admin-back-btn:hover[b-sccjt50n87]{
    border-color: rgb(0, 87, 168);
    color: rgb(0, 87, 168);
    background: #e8f0fb;
}

/* Body-Bereich  */
.admin-body[b-sccjt50n87] {
    grid-column: 1 / -1; 
    display: grid;
    grid-template-columns: 220px 1fr;
    height: calc(100vh - 52px);
}

/* Sidebar */
.admin-sidebar[b-sccjt50n87] {
    background: #ffffff;
    border-right: 1px solid #dde6f0;
    display: flex;
    flex-direction: column;
    top: 52px; 
    height: calc(100vh - 52px);
    overflow-y: auto;
}

/* Profil */
.sidebar-profile[b-sccjt50n87] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 16px 14px;
    border-bottom: 1px solid #f0f4f9;
}

.sidebar-avatar[b-sccjt50n87] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e8f0fb;
    color: rgb(0, 87, 168);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-username[b-sccjt50n87] {
    font-size: 15px;
    font-weight: 700;
    color: #0f1f3d;
}

.sidebar-role[b-sccjt50n87] {
    font-size: 12px;
    color: #9ba8b5;
    margin-top: 1px;
}

/* Nav */
.sidebar-nav[b-sccjt50n87] {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    flex: 1;
}

.sidebar-nav-group[b-sccjt50n87] {
    padding: 10px 16px 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c5d0db;
}

[b-sccjt50n87] .sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    font-size: 13px;
    color: #374151;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    cursor: pointer;
}

    [b-sccjt50n87] .sidebar-nav-item:hover {
        background: #f0f5fb;
        color: rgb(0, 87, 168);
    }

    /* Blazor NavLink setzt .active automatisch */
    [b-sccjt50n87] .sidebar-nav-item.active,
    .sidebar-nav-item[b-sccjt50n87] .active {
        background: #e8f0fb;
        color: rgb(0, 87, 168);
        font-weight: 700;
        border-left-color: rgb(0, 87, 168);
    }

[b-sccjt50n87] .sidebar-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: currentColor;
}

/* Footer / Abmelden */
.sidebar-footer[b-sccjt50n87] {
    padding: 12px 16px;
    border-top: 1px solid #f0f4f9;
}

.sidebar-logout[b-sccjt50n87] {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    color: #9ba8b5;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.15s;
}

    .sidebar-logout:hover[b-sccjt50n87] {
        color: #dc2626;
    }

/* Content-Bereich */
.admin-content[b-sccjt50n87] {
    overflow-y: hidden;
    background: #f5f8fc;
    height: 100%;
}

/*  Responsive  */
@media (max-width: 900px) {
    .admin-shell[b-sccjt50n87] {
        grid-template-columns: 1fr;
    }

    .admin-body[b-sccjt50n87] {
        grid-template-columns: 1fr;
    }

    .admin-sidebar[b-sccjt50n87] {
        display: none; 
    }
}
/* /Components/Layout/FormLayout.razor.rz.scp.css */
html[b-9pgvjnshms], body[b-9pgvjnshms] {
    height: 100%;
    overflow: hidden;
}

:root[b-9pgvjnshms] {
    --green-100: rgb(124, 202, 174);
    --green-80: rgb(137, 204, 181);
    --green-60: rgb(166, 217, 200);
    --green-40: rgb(196, 229, 218);
    --green-20: rgb(225, 242, 237);
    --blue-100: rgb(0, 122, 195);
    --blue-80: rgb(51, 149, 207);
    --blue-60: rgb(102, 175, 219);
    --blue-40: rgb(153, 202, 231);
    --blue-20: rgb(204, 228, 243);
}

/* TOPBAR */
.topbar[b-9pgvjnshms] {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 64px;
    background: var(--green-80);
    border-bottom: 2px solid rgb(0, 122, 195);
}

.topbar-inner[b-9pgvjnshms] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 24px;
}

.topbar-right[b-9pgvjnshms] {
    margin-left: auto;
}

.topbar-left[b-9pgvjnshms] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-logo[b-9pgvjnshms] {
    height: 60px;
    object-fit: contain;
    cursor: pointer;
}

.topbar-title[b-9pgvjnshms] {
    font-size: 1.5rem;
    font-weight: 600;
    color: black;
    white-space: nowrap;
}

/*LAYOUT*/
.layout[b-9pgvjnshms] {
    height: calc(100vh - 64px);
    display: grid;
    grid-template-columns: 300px 1fr;
    overflow: hidden;
}

/*SIDEBAR*/
.sidebar[b-9pgvjnshms] {
    background: linear-gradient(160deg, #0a2a5e 0%, #0057a8 60%, #0077cc 100%);
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    position: relative;
}

    .sidebar[b-9pgvjnshms]::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(255,255,255,0.06);
        pointer-events: none;
    }

    .sidebar[b-9pgvjnshms]::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -60px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255,255,255,0.04);
        pointer-events: none;
    }

/* CONTENT */
.content[b-9pgvjnshms] {
    padding: 36px 40px;
    overflow-y: auto;
    height: 100%;
    background: #f5f7fb;
}

/* SIDEBAR HEADE*/
.sidebar-header[b-9pgvjnshms] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    position: relative;
    z-index: 1;
}

.sidebar-label[b-9pgvjnshms] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.sidebar-progress-text[b-9pgvjnshms] {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.1);
    padding: 3px 10px;
    border-radius: 999px;
}

/* PROGRESS BAR*/
.sidebar-progress-bar[b-9pgvjnshms] {
    height: 3px;
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.sidebar-progress-fill[b-9pgvjnshms] {
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.7), white);
    border-radius: 999px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

    .sidebar-progress-fill[b-9pgvjnshms]::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background: white;
        border-radius: 50%;
        box-shadow: 0 0 6px white;
    }

/* STEPS*/
.steps[b-9pgvjnshms] {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

.step-item[b-9pgvjnshms] {
    display: flex;
    flex-direction: column;
}

.step[b-9pgvjnshms] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 14px;
    border-radius: 14px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
}

    .step:hover[b-9pgvjnshms] {
        background: rgba(255,255,255,0.1);
        color: rgba(255,255,255,0.9);
        transform: translateX(3px);
    }

    .step.active[b-9pgvjnshms] {
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
        color: white;
        font-weight: 700;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

/* STEP ICON */
.step-icon[b-9pgvjnshms] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s;
    color: rgba(255,255,255,0.6);
}

.step:hover .step-icon[b-9pgvjnshms] {
    background: rgba(255,255,255,0.18);
    color: white;
}

.step.active .step-icon[b-9pgvjnshms] {
    background: white;
    color: #0057a8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.step:has(svg polyline) .step-icon[b-9pgvjnshms] {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

/* STEP TEXT */
.step-text[b-9pgvjnshms] {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
}

.step-num[b-9pgvjnshms] {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    line-height: 1;
}

.step.active .step-num[b-9pgvjnshms] {
    color: rgba(255,255,255,0.65);
}

.step-name[b-9pgvjnshms] {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}

/* ACTIVE DOT */
.step-active-dot[b-9pgvjnshms] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: white;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(255,255,255,0.8);
    animation: pulse-dot-b-9pgvjnshms 2s ease-in-out infinite;
}

@keyframes pulse-dot-b-9pgvjnshms {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.7);
    }
}

/* CONNECTOR*/
.step-connector[b-9pgvjnshms] {
    width: 2px;
    height: 18px;
    background: rgba(255,255,255,0.12);
    margin: 3px 0 3px 31px;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
}

    .step-connector.done[b-9pgvjnshms] {
        background: rgba(74, 222, 128, 0.4);
    }

        .step-connector.done[b-9pgvjnshms]::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #4ade80, rgba(74,222,128,0.3));
            animation: fill-connector-b-9pgvjnshms 0.5s ease forwards;
        }

@keyframes fill-connector-b-9pgvjnshms {
    from {
        transform: scaleY(0);
        transform-origin: top;
    }

    to {
        transform: scaleY(1);
        transform-origin: top;
    }
}

/* HAMBURGER */
.hamburger[b-9pgvjnshms] {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
}

    .hamburger:hover[b-9pgvjnshms] {
        background: rgba(0,0,0,0.08);
    }

    .hamburger span[b-9pgvjnshms] {
        display: block;
        width: 22px;
        height: 2px;
        background: #0f1f3d;
        border-radius: 999px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }

    .hamburger.open span:nth-child(1)[b-9pgvjnshms] {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2)[b-9pgvjnshms] {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3)[b-9pgvjnshms] {
        transform: translateY(-7px) rotate(-45deg);
    }

/* OVERLA */
.sidebar-overlay[b-9pgvjnshms] {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 200;
}

    .sidebar-overlay.active[b-9pgvjnshms] {
        display: block;
        animation: overlay-in-b-9pgvjnshms 0.2s ease;
    }

@keyframes overlay-in-b-9pgvjnshms {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*  SIDEBAR LOGOUT  */
.sidebar-logout[b-9pgvjnshms] {
    display: none;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sidebar-logout-btn[b-9pgvjnshms] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

    .sidebar-logout-btn:hover[b-9pgvjnshms] {
        background: rgba(220,38,38,0.2);
        color: #fca5a5;
    }

/*ADMIN BUTTON*/
.admin-nav-btn[b-9pgvjnshms] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1.5px solid #dde6f0;
    background: white;
    color: #0057a8;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
}

    .admin-nav-btn:hover[b-9pgvjnshms] {
        background: #e8f0fb;
        border-color: #0057a8;
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(0,87,168,0.15);
    }

/* RESPONSIVE */

/* Tablets Landscape (max 1199px) */
@media (max-width: 1199px) {
    .layout[b-9pgvjnshms] {
        grid-template-columns: 260px 1fr;
    }

    .topbar-title[b-9pgvjnshms] {
        font-size: 1.25rem;
    }

    .topbar-inner[b-9pgvjnshms] {
        padding: 0 20px;
    }

    .sidebar[b-9pgvjnshms] {
        padding: 24px 16px;
        gap: 20px;
    }

    .content[b-9pgvjnshms] {
        padding: 28px 28px;
    }
}

/* Tablets Portrait (max 1023px) */
@media (max-width: 1023px) {
    .topbar[b-9pgvjnshms] {
        height: 58px;
    }

    .topbar-logo[b-9pgvjnshms] {
        height: 50px;
    }

    .topbar-title[b-9pgvjnshms] {
        font-size: 1.1rem;
    }

    .topbar-inner[b-9pgvjnshms] {
        padding: 0 16px;
    }

    .layout[b-9pgvjnshms] {
        grid-template-columns: 220px 1fr;
        height: calc(100vh - 58px);
    }

    .content[b-9pgvjnshms] {
        padding: 24px 20px;
    }

    .logout-btn[b-9pgvjnshms]{
        display: none;
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    html[b-9pgvjnshms], body[b-9pgvjnshms] {
        overflow: auto;
        height: auto;
    }

    .topbar[b-9pgvjnshms] {
        height: 54px;
    }

    .topbar-logo[b-9pgvjnshms] {
        height: 44px;
    }

    .topbar-title[b-9pgvjnshms] {
        font-size: 1rem;
    }

    .topbar-inner[b-9pgvjnshms] {
        padding: 0 14px;
        gap: 8px;
    }

    /* Hamburger sichtbar */
    .hamburger[b-9pgvjnshms] {
        display: flex;
    }

    /* Layout wird einspaltig */
    .layout[b-9pgvjnshms] {
        display: block;
        height: auto;
        min-height: calc(100vh - 54px);
        overflow: visible;
    }

    /* Sidebar als fixed Slide-in — versteckt */
    .sidebar[b-9pgvjnshms] {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 280px;
        z-index: 300;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        flex-direction: column;
        padding: 80px 16px 24px;
        overflow-y: auto;
        gap: 24px;
    }

        /* Sidebar offen */
        .sidebar.sidebar-open[b-9pgvjnshms] {
            transform: translateX(0);
            box-shadow: 8px 0 32px rgba(0,0,0,0.3);
        }

    /* Overlay nur wenn active */
    .sidebar-overlay[b-9pgvjnshms] {
        display: none;
    }

        .sidebar-overlay.active[b-9pgvjnshms] {
            display: block;
        }

    /* Steps vertikal */
    .steps[b-9pgvjnshms] {
        flex-direction: column;
        gap: 0;
    }

    .step-item[b-9pgvjnshms] {
        flex-direction: column;
    }

    .step[b-9pgvjnshms] {
        flex-direction: row;
        text-align: left;
        padding: 12px 14px;
        border-radius: 14px;
        gap: 14px;
    }

    .step-num[b-9pgvjnshms] {
        display: block;
    }

    .step-name[b-9pgvjnshms] {
        font-size: 0.875rem;
        max-width: none;
    }

    .step-active-dot[b-9pgvjnshms] {
        display: block;
    }

    .step-connector[b-9pgvjnshms] {
        width: 2px;
        height: 14px;
        margin: 2px 0 2px 26px;
    }

    /* Logout sichtbar */
    .sidebar-logout[b-9pgvjnshms] {
        display: block;
    }

    .content[b-9pgvjnshms] {
        height: auto;
        overflow-y: visible;
        padding: 20px 16px;
    }

    .logout-btn[b-9pgvjnshms]{
        display: none;
    }
}

/* Große Handys (max 599px) */
@media (max-width: 599px) {
    .topbar[b-9pgvjnshms] {
        height: 52px;
    }

    .topbar-logo[b-9pgvjnshms] {
        height: 38px;
    }

    .topbar-title[b-9pgvjnshms] {
        font-size: 0.9rem;
    }

    .topbar-inner[b-9pgvjnshms] {
        padding: 0 12px;
    }

    .layout[b-9pgvjnshms] {
        min-height: calc(100vh - 52px);
    }

    logout-btn[b-9pgvjnshms]{
        display: none;
    }
}

/* Kleine Handys (max 479px) */
@media (max-width: 479px) {
    .sidebar[b-9pgvjnshms] {
        width: 260px;
    }

    .logout-btn[b-9pgvjnshms]{
        display: none;
    }
}

/* Sehr kleine Handys (max 380px) */
@media (max-width: 380px) {
    .topbar-title[b-9pgvjnshms] {
        display: none;
    }

    .topbar-logo[b-9pgvjnshms] {
        height: 34px;
    }

    .sidebar[b-9pgvjnshms] {
        width: 240px;
    }

    .logout-btn[b-9pgvjnshms]{
        display: none;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
html[b-1zfugtbg0u], body[b-1zfugtbg0u] {
    margin: 0;
    height: 100%;
    overflow: hidden;
}

:root[b-1zfugtbg0u] {
    --green-100: rgb(124, 202, 174);
    --green-80: rgb(137, 204, 181);
    --green-60: rgb(166, 217, 200);
    --green-40: rgb(196, 229, 218);
    --green-20: rgb(225, 242, 237);
    --blue-100: rgb(0, 122, 195);
    --blue-80: rgb(51, 149, 207);
    --blue-60: rgb(102, 175, 219);
    --blue-40: rgb(153, 202, 231);
    --blue-20: rgb(204, 228, 243);
}

.topbar[b-1zfugtbg0u] {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 64px;
    background: var(--green-80);
    border-bottom: 2px solid rgb(0, 122, 195);
    backdrop-filter: none;
    opacity: 1 !important;
    background-color: white;
}

.topbar-inner[b-1zfugtbg0u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 24px;
}

.topbar-right[b-1zfugtbg0u] {
    margin-left: auto;
}

.topbar-left[b-1zfugtbg0u] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-logo[b-1zfugtbg0u] {
    height: 60px;
    object-fit: contain;
    cursor: pointer;
}

.topbar-title[b-1zfugtbg0u] {
    font-size: 1.5rem;
    font-weight: 600;
    color: black;
    white-space: nowrap;
}

.layout[b-1zfugtbg0u] {
    height: calc(100vh - 64px);
    display: grid;
    grid-template-columns: 300px 1fr;
    background: var(--blue-100);
    color: var(--blue-20);
    overflow: hidden;
}

.admin-nav-btn[b-1zfugtbg0u] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1.5px solid #dde6f0;
    background: white;
    color: #0057a8;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
}

    .admin-nav-btn:hover[b-1zfugtbg0u] {
        background: #e8f0fb;
        border-color: #0057a8;
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(0,87,168,0.15);
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ya1xy5ewz1] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-ya1xy5ewz1] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-ya1xy5ewz1] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-ya1xy5ewz1] {
    font-size: 1.1rem;
}

.bi[b-ya1xy5ewz1] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-ya1xy5ewz1] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-ya1xy5ewz1] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-ya1xy5ewz1] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-ya1xy5ewz1] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-ya1xy5ewz1] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-ya1xy5ewz1] {
        padding-bottom: 1rem;
    }

    .nav-item[b-ya1xy5ewz1]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-ya1xy5ewz1]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-ya1xy5ewz1]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-ya1xy5ewz1] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-ya1xy5ewz1] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-ya1xy5ewz1] {
        display: none;
    }

    .nav-scrollable[b-ya1xy5ewz1] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-is8o3b30vi],
.components-reconnect-repeated-attempt-visible[b-is8o3b30vi],
.components-reconnect-failed-visible[b-is8o3b30vi],
.components-pause-visible[b-is8o3b30vi],
.components-resume-failed-visible[b-is8o3b30vi],
.components-rejoining-animation[b-is8o3b30vi] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-is8o3b30vi],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-is8o3b30vi],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-is8o3b30vi],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-is8o3b30vi],
#components-reconnect-modal.components-reconnect-retrying[b-is8o3b30vi],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-is8o3b30vi],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-is8o3b30vi],
#components-reconnect-modal.components-reconnect-failed[b-is8o3b30vi],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-is8o3b30vi] {
    display: block;
}


#components-reconnect-modal[b-is8o3b30vi] {
    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-is8o3b30vi 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-is8o3b30vi 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-is8o3b30vi 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-is8o3b30vi]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-is8o3b30vi 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-is8o3b30vi {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-is8o3b30vi {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-is8o3b30vi {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-is8o3b30vi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-is8o3b30vi] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-is8o3b30vi] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-is8o3b30vi] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-is8o3b30vi] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-is8o3b30vi] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-is8o3b30vi] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-is8o3b30vi 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-is8o3b30vi] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-is8o3b30vi {
    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/AccountManagement/Login.razor.rz.scp.css */

.login-wrap[b-vhdhj762ez] {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f9 0%, #e8f0fb 100%);
}

/* Hintergrund-Formen */
.login-bg-shapes[b-vhdhj762ez] {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.login-shape[b-vhdhj762ez] {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: #0057a8;
}

.login-shape-1[b-vhdhj762ez] {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float1-b-vhdhj762ez 8s ease-in-out infinite;
}

.login-shape-2[b-vhdhj762ez] {
    width: 280px;
    height: 280px;
    bottom: -80px;
    left: -80px;
    opacity: 0.05;
    animation: float2-b-vhdhj762ez 10s ease-in-out infinite;
}

.login-shape-3[b-vhdhj762ez] {
    width: 180px;
    height: 180px;
    bottom: 20%;
    right: 10%;
    opacity: 0.04;
    animation: float1-b-vhdhj762ez 12s ease-in-out infinite reverse;
}

@keyframes float1-b-vhdhj762ez {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes float2-b-vhdhj762ez {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(15px) rotate(-5deg);
    }
}

/* Login Card */
.login-card[b-vhdhj762ez] {
    background: white;
    border-radius: 24px;
    padding: 48px 44px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 8px 40px rgba(0, 87, 168, 0.12), 0 2px 8px rgba(0, 87, 168, 0.08);
    border: 1px solid rgba(0, 87, 168, 0.08);
    position: relative;
    z-index: 1;
    animation: card-in-b-vhdhj762ez 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes card-in-b-vhdhj762ez {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.login-header[b-vhdhj762ez] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    text-align: center;
}

.login-logo[b-vhdhj762ez] {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 4px;
}

.login-header h1[b-vhdhj762ez] {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f1f3d;
    margin: 0;
    letter-spacing: -0.02em;
}

.login-header p[b-vhdhj762ez] {
    font-size: 0.875rem;
    color: #6b7b8d;
    margin: 0;
    line-height: 1.5;
}

/* Error */
.login-error[b-vhdhj762ez] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 12px 16px;
    color: #dc2626;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    animation: shake-b-vhdhj762ez 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes shake-b-vhdhj762ez {
    0%, 100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

/* Fields */
.login-fields[b-vhdhj762ez] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

/* Login Button */
.login-btn[b-vhdhj762ez] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0057a8;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(0, 87, 168, 0.35);
    letter-spacing: 0.01em;
}

    .login-btn:hover[b-vhdhj762ez] {
        background: #004a8f;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 87, 168, 0.45);
    }

    .login-btn:active[b-vhdhj762ez] {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(0, 87, 168, 0.3);
    }

    .login-btn svg[b-vhdhj762ez] {
        transition: transform 0.2s;
    }

    .login-btn:hover svg[b-vhdhj762ez] {
        transform: translateX(4px);
    }

/* Footer */
.login-footer[b-vhdhj762ez] {
    text-align: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #e8eef5;
}

    .login-footer span[b-vhdhj762ez] {
        font-size: 0.75rem;
        color: #9ba8b5;
        letter-spacing: 0.02em;
    }


@media (max-width: 480px) {
    .login-card[b-vhdhj762ez] {
        padding: 36px 28px;
        border-radius: 20px;
    }

    .login-header h1[b-vhdhj762ez] {
        font-size: 1.4rem;
    }

    .login-logo[b-vhdhj762ez] {
        height: 44px;
    }
}

@media (max-width: 360px) {
    .login-card[b-vhdhj762ez] {
        padding: 28px 20px;
    }

    .login-header h1[b-vhdhj762ez] {
        font-size: 1.25rem;
    }
}
/* /Components/Pages/Admin/Applications.razor.rz.scp.css */
html[b-6ssi275pw9], body[b-6ssi275pw9]{
    height: 100%;
    overflow: hidden;
}
.app[b-6ssi275pw9] {
    padding: 28px 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    animation: app-fadein-b-6ssi275pw9 0.4s ease both;
    overflow: hidden;
}

@keyframes app-fadein-b-6ssi275pw9 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Header*/
.app-header[b-6ssi275pw9] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.app-title[b-6ssi275pw9] {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f1f3d;
    margin: 0 0 2px;
    letter-spacing: -0.02em;
}

.app-sub[b-6ssi275pw9] {
    font-size: 12px;
    color: #9ba8b5;
    margin: 0;
}

.app-export-btn[b-6ssi275pw9] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1.5px solid #dde6f0;
    background: white;
    color: #374151;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s ease;
}

    .app-export-btn:hover[b-6ssi275pw9] {
        border-color: rgb(0, 87, 168);
        color: rgb(0, 87, 168);
        background: #e8f0fb;
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(0,87,168,0.12);
    }

/*Stat-Karten*/
.app-stats[b-6ssi275pw9] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.app-stat[b-6ssi275pw9] {
    background: white;
    border: 1px solid #dde6f0;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 4px rgba(0,87,168,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: app-fadein-b-6ssi275pw9 0.4s ease both;
}

    .app-stat:nth-child(1)[b-6ssi275pw9] {
        animation-delay: 0.05s;
    }

    .app-stat:nth-child(2)[b-6ssi275pw9] {
        animation-delay: 0.10s;
    }

    .app-stat:nth-child(3)[b-6ssi275pw9] {
        animation-delay: 0.15s;
    }

    .app-stat:nth-child(4)[b-6ssi275pw9] {
        animation-delay: 0.20s;
    }

    .app-stat:nth-child(5)[b-6ssi275pw9] {
        animation-delay: 0.25s;
    }

    .app-stat:hover[b-6ssi275pw9] {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0,87,168,0.12);
    }

        .app-stat:hover .app-stat-icon[b-6ssi275pw9] {
            transform: scale(1.1);
        }

.app-stat-icon[b-6ssi275pw9] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.app-stat-num[b-6ssi275pw9] {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f1f3d;
    line-height: 1;
    animation: num-pop-b-6ssi275pw9 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes num-pop-b-6ssi275pw9 {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.app-stat-label[b-6ssi275pw9] {
    font-size: 11px;
    color: #9ba8b5;
    font-weight: 600;
    margin-top: 2px;
}

/*Toolbar*/
.app-toolbar[b-6ssi275pw9] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    background: white;
    border: 1px solid #dde6f0;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 1px 4px rgba(0,87,168,0.04);
}

.app-search[b-6ssi275pw9] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f8fc;
    border: 1.5px solid #dde6f0;
    border-radius: 8px;
    padding: 0 12px;
    flex: 1;
    min-width: 200px;
    color: #9ba8b5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .app-search:focus-within[b-6ssi275pw9] {
        border-color: rgb(0, 87, 168);
        box-shadow: 0 0 0 3px rgba(0,87,168,0.08);
        background: white;
    }

    .app-search input[b-6ssi275pw9] {
        border: none;
        outline: none;
        font-size: 13px;
        padding: 9px 0;
        flex: 1;
        background: transparent;
        color: #0f1f3d;
        font-family: inherit;
    }

.app-search-clear[b-6ssi275pw9] {
    background: none;
    border: none;
    cursor: pointer;
    color: #9ba8b5;
    padding: 2px;
    display: flex;
    align-items: center;
    transition: color 0.15s;
}

    .app-search-clear:hover[b-6ssi275pw9] {
        color: #374151;
    }

.app-filters[b-6ssi275pw9] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.app-select[b-6ssi275pw9] {
    padding: 8px 12px;
    border: 1.5px solid #dde6f0;
    border-radius: 8px;
    font-size: 12px;
    background: #f5f8fc;
    color: #374151;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

    .app-select:hover[b-6ssi275pw9], .app-select:focus[b-6ssi275pw9] {
        border-color: rgb(0, 87, 168);
        background: white;
    }

.app-reset-btn[b-6ssi275pw9] {
    font-size: 12px;
    color: #993556;
    background: #fbeaf0;
    border: 1px solid #f4b8cc;
    border-radius: 8px;
    padding: 7px 12px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: all 0.15s ease;
}

    .app-reset-btn:hover[b-6ssi275pw9] {
        background: #f7c1d0;
        transform: translateY(-1px);
    }

/*Tabelle*/
.app-table-wrap[b-6ssi275pw9] {
    background: white;
    border: 1px solid #dde6f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,87,168,0.06);
    overflow-y: auto;
    max-height: calc(100vh - 360px);
    animation: app-fadein-b-6ssi275pw9 0.4s ease 0.3s both;
}

.app-table[b-6ssi275pw9] {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

    .app-table thead tr[b-6ssi275pw9] {
        background: #f5f8fc;
        border-bottom: 1px solid #dde6f0;
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .app-table th[b-6ssi275pw9] {
        padding: 11px 16px;
        text-align: left;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #6b7b8d;
        white-space: nowrap;
    }

    .app-table tbody tr[b-6ssi275pw9] {
        border-bottom: 1px solid #f0f4f9;
        cursor: pointer;
        transition: background 0.15s ease, transform 0.15s ease;
    }

        .app-table tbody tr:last-child[b-6ssi275pw9] {
            border-bottom: none;
        }

        .app-table tbody tr:hover[b-6ssi275pw9] {
            background: #f0f5fb;
            transform: translateX(2px);
        }

        .app-table tbody tr.row-selected[b-6ssi275pw9] {
            background: #e8f0fb;
            border-left: 3px solid rgb(0, 87, 168);
        }

    .app-table td[b-6ssi275pw9] {
        padding: 12px 16px;
        color: #374151;
        vertical-align: middle;
    }

/*Tabellen Zellen*/
.col-id[b-6ssi275pw9] {
    color: #c5d0db;
    font-size: 11px;
    font-weight: 700;
    width: 36px;
}

.col-muted[b-6ssi275pw9] {
    color: #6b7b8d;
    font-size: 12px;
}

.col-date[b-6ssi275pw9] {
    color: #9ba8b5;
    font-size: 12px;
    white-space: nowrap;
}

.col-name[b-6ssi275pw9] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.col-avatar[b-6ssi275pw9] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e8f0fb;
    color: rgb(0, 87, 168);
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-table tbody tr:hover .col-avatar[b-6ssi275pw9] {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0,87,168,0.2);
}

.col-fullname[b-6ssi275pw9] {
    font-weight: 600;
    color: #0f1f3d;
    font-size: 13px;
}

.col-sub[b-6ssi275pw9] {
    font-size: 11px;
    color: #9ba8b5;
    margin-top: 1px;
}

/*Pills*/
.pill[b-6ssi275pw9] {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    transition: transform 0.15s ease;
}

    .pill:hover[b-6ssi275pw9] {
        transform: scale(1.05);
    }

.pill-blue[b-6ssi275pw9] {
    background: #e8f0fb;
    color: rgb(0,87,168);
}

.pill-green[b-6ssi275pw9] {
    background: #e0f4ec;
    color: #0d5c42;
}

.pill-gray[b-6ssi275pw9] {
    background: #f0f4f9;
    color: #6b7b8d;
}

/*Detail Button*/
.row-btn[b-6ssi275pw9] {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid #dde6f0;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7b8d;
    transition: all 0.15s ease;
}

    .row-btn:hover[b-6ssi275pw9] {
        transform: scale(1.15);
        background: #e8f0fb;
        border-color: rgb(0,87,168);
        color: rgb(0,87,168);
    }

/*Footer*/
.app-table-footer[b-6ssi275pw9] {
    font-size: 11px;
    color: #9ba8b5;
    text-align: right;
    padding: 4px 2px;
}

/* Leer / Loading*/
.app-loading[b-6ssi275pw9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 80px;
    color: #9ba8b5;
    font-size: 13px;
    font-weight: 600;
}

.app-spinner[b-6ssi275pw9] {
    width: 32px;
    height: 32px;
    animation: app-rotate-b-6ssi275pw9 1.4s linear infinite;
}

    .app-spinner circle[b-6ssi275pw9] {
        fill: none;
        stroke: rgb(0,87,168);
        stroke-width: 4;
        stroke-dasharray: 80;
        stroke-dashoffset: 60;
        stroke-linecap: round;
    }

@keyframes app-rotate-b-6ssi275pw9 {
    to {
        transform: rotate(360deg);
    }
}

.app-empty[b-6ssi275pw9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 60px;
    color: #9ba8b5;
    font-size: 14px;
    background: white;
    border: 1px solid #dde6f0;
    border-radius: 14px;
}

/* Detail-Panel*/
.panel-overlay[b-6ssi275pw9] {
    position: fixed;
    inset: 0;
    background: rgba(15,31,61,0.35);
    z-index: 100;
    display: flex;
    justify-content: flex-end;
    animation: ov-in-b-6ssi275pw9 0.2s ease both;
    backdrop-filter: blur(2px);
}

@keyframes ov-in-b-6ssi275pw9 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.panel[b-6ssi275pw9] {
    background: white;
    width: 440px;
    height: 100vh;
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    animation: panel-in-b-6ssi275pw9 0.28s cubic-bezier(0.4,0,0.2,1) both;
}

@keyframes panel-in-b-6ssi275pw9 {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.panel-head[b-6ssi275pw9] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 22px;
    border-bottom: 1px solid #e8eef5;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.panel-avatar[b-6ssi275pw9] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e8f0fb;
    color: rgb(0,87,168);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.panel-head h2[b-6ssi275pw9] {
    font-size: 14px;
    font-weight: 700;
    color: #0f1f3d;
    margin: 0 0 2px;
}

.panel-head p[b-6ssi275pw9] {
    font-size: 12px;
    color: #6b7b8d;
    margin: 0;
}

.panel-close[b-6ssi275pw9] {
    margin-left: auto;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid #dde6f0;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7b8d;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

    .panel-close:hover[b-6ssi275pw9] {
        transform: rotate(90deg);
        background: #fef2f2;
        border-color: #fca5a5;
        color: #dc2626;
    }

.panel-body[b-6ssi275pw9] {
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.panel-section[b-6ssi275pw9] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: app-fadein-b-6ssi275pw9 0.3s ease both;
}

    .panel-section:nth-child(1)[b-6ssi275pw9] {
        animation-delay: 0.05s;
    }

    .panel-section:nth-child(2)[b-6ssi275pw9] {
        animation-delay: 0.10s;
    }

    .panel-section:nth-child(3)[b-6ssi275pw9] {
        animation-delay: 0.15s;
    }

    .panel-section:nth-child(4)[b-6ssi275pw9] {
        animation-delay: 0.20s;
    }

    .panel-section:nth-child(5)[b-6ssi275pw9] {
        animation-delay: 0.25s;
    }

    .panel-section:nth-child(6)[b-6ssi275pw9] {
        animation-delay: 0.30s;
    }

.panel-section-title[b-6ssi275pw9] {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgb(0,87,168);
    padding-bottom: 8px;
    border-bottom: 1px solid #e8eef5;
}

.panel-grid[b-6ssi275pw9] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.panel-item[b-6ssi275pw9] {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.panel-full[b-6ssi275pw9] {
    grid-column: 1 / -1;
}

.panel-item span[b-6ssi275pw9] {
    font-size: 10px;
    color: #9ba8b5;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.panel-item strong[b-6ssi275pw9] {
    font-size: 13px;
    color: #0f1f3d;
    font-weight: 600;
    line-height: 1.4;
}

/*Responsive*/
@media (max-width: 1100px) {
    .app-stats[b-6ssi275pw9] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .app[b-6ssi275pw9] {
        padding: 16px;
    }

    .app-stats[b-6ssi275pw9] {
        grid-template-columns: repeat(2, 1fr);
    }

    .panel[b-6ssi275pw9] {
        width: 100vw;
    }

    .app-table th:nth-child(4)[b-6ssi275pw9],
    .app-table td:nth-child(4)[b-6ssi275pw9] {
        display: none;
    }
}
/* /Components/Pages/Admin/Dashboard.razor.rz.scp.css */

.dash[b-jklzceevz1] {
    padding: 28px 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: calc(100vh - 52px);
}

/*Header*/
.dash-header[b-jklzceevz1] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.dash-title[b-jklzceevz1] {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f1f3d;
    margin: 0 0 2px;
    letter-spacing: -0.02em;
}

.dash-sub[b-jklzceevz1] {
    font-size: 12px;
    color: #9ba8b5;
    margin: 0;
}

.dash-actions[b-jklzceevz1] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-btn[b-jklzceevz1] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
    border: 1.5px solid transparent;
}

.dash-btn--ghost[b-jklzceevz1] {
    background: white;
    border-color: #dde6f0;
    color: #374151;
}

    .dash-btn--ghost:hover[b-jklzceevz1] {
        border-color: rgb(0,87,168);
        color: rgb(0,87,168);
        background: #e8f0fb;
    }

.dash-btn--primary[b-jklzceevz1] {
    background: rgb(0,87,168);
    color: white;
    border-color: rgb(0,87,168);
}

    .dash-btn--primary:hover[b-jklzceevz1] {
        background: rgb(0,67,138);
    }

/*Courseinfo-Banner */
.course-banner[b-jklzceevz1] {
    background: white;
    border: 1px solid #dde6f0;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    box-shadow: 0 1px 4px rgba(0,87,168,0.05);
}

.course-banner-item[b-jklzceevz1] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 20px;
    flex: 1;
    min-width: 130px;
}

    .course-banner-item:first-child[b-jklzceevz1] {
        padding-left: 0;
    }

    .course-banner-item svg[b-jklzceevz1] {
        color: #9ba8b5;
        flex-shrink: 0;
    }

.course-banner-label[b-jklzceevz1] {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #9ba8b5;
    margin-bottom: 2px;
}

.course-banner-value[b-jklzceevz1] {
    font-size: 13px;
    font-weight: 700;
    color: #0f1f3d;
}

.course-banner-price[b-jklzceevz1] {
    color: rgb(0,87,168);
}

.course-banner-divider[b-jklzceevz1] {
    width: 1px;
    height: 32px;
    background: #dde6f0;
    flex-shrink: 0;
}

/*Stat-Cards*/
.dash-stats[b-jklzceevz1] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.dash-stat[b-jklzceevz1] {
    background: white;
    border: 1px solid #dde6f0;
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 1px 4px rgba(0,87,168,0.05);
    transition: box-shadow 0.15s;
}

    .dash-stat:hover[b-jklzceevz1] {
        box-shadow: 0 4px 14px rgba(0,87,168,0.1);
    }

.dash-stat--wide[b-jklzceevz1] {
    grid-column: span 1;
}

.dash-stat-icon[b-jklzceevz1] {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dash-stat-num[b-jklzceevz1] {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f1f3d;
    line-height: 1;
    margin-bottom: 3px;
}

.dash-stat-label[b-jklzceevz1] {
    font-size: 11px;
    color: #9ba8b5;
    font-weight: 600;
}

.dash-auslastung-bar[b-jklzceevz1] {
    margin-top: 7px;
    height: 4px;
    background: #f0f4f9;
    border-radius: 2px;
    overflow: hidden;
}

.dash-auslastung-fill[b-jklzceevz1] {
    height: 100%;
    background: rgb(0,87,168);
    border-radius: 2px;
    transition: width 0.6s ease;
}

/* Loading */
.dash-loading[b-jklzceevz1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 80px;
    color: #9ba8b5;
    font-size: 13px;
    font-weight: 600;
}

.dash-spinner[b-jklzceevz1] {
    width: 32px;
    height: 32px;
    animation: dash-rotate-b-jklzceevz1 1.4s linear infinite;
}

    .dash-spinner circle[b-jklzceevz1] {
        fill: none;
        stroke: rgb(0,87,168);
        stroke-width: 4;
        stroke-dasharray: 80;
        stroke-dashoffset: 60;
        stroke-linecap: round;
        animation: dash-stretch-b-jklzceevz1 1.4s ease-in-out infinite;
    }

@keyframes dash-rotate-b-jklzceevz1 {
    to {
        transform: rotate(360deg);
    }
}

@keyframes dash-stretch-b-jklzceevz1 {
    0% {
        stroke-dashoffset: 75;
    }

    50% {
        stroke-dashoffset: 20;
    }

    100% {
        stroke-dashoffset: 75;
    }
}

/*Bottom area*/
.dash-bottom[b-jklzceevz1] {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 16px;
    align-items: start;
}

.dash-card[b-jklzceevz1] {
    background: white;
    border: 1px solid #dde6f0;
    border-radius: 14px;
    padding: 24px 28px;
    box-shadow: 0 1px 4px rgba(0,87,168,0.05);
}

    .dash-card:hover[b-jklzceevz1] {
        box-shadow: black;
        box-shadow: 2px 2px 5px rgb(0, 87, 168);
    }

.dash-card-header[b-jklzceevz1] {
    margin-bottom: 14px;
}

.dash-card-title[b-jklzceevz1] {
    font-size: 13px;
    font-weight: 700;
    color: #0f1f3d;
}

.dash-card-sub[b-jklzceevz1] {
    font-size: 11px;
    color: #9ba8b5;
    margin-top: 2px;
}

/*Chart*/
.dash-chart-legend[b-jklzceevz1] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #6b7b8d;
    margin-bottom: 8px;
}

.dash-legend-dot[b-jklzceevz1] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dash-sparkline[b-jklzceevz1] {
    width: 100%;
    height: auto;
    display: block;
}

/*Quick-access*/
.dash-quick-list[b-jklzceevz1] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dash-quick-item[b-jklzceevz1] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #f0f4f9;
    background: #fafbfc;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: all 0.15s;
    text-align: left;
    width: 100%;
}

    .dash-quick-item:hover[b-jklzceevz1] {
        background: #f0f5fb;
        border-color: #dde6f0;
    }

.dash-quick-icon[b-jklzceevz1] {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dash-quick-label[b-jklzceevz1] {
    font-size: 12px;
    font-weight: 700;
    color: #0f1f3d;
}

.dash-quick-sub[b-jklzceevz1] {
    font-size: 11px;
    color: #9ba8b5;
    margin-top: 1px;
}

.dash-quick-arrow[b-jklzceevz1] {
    margin-left: auto;
    color: #c5d0db;
    flex-shrink: 0;
}

/*Responsive*/
@media (max-width: 1024px) {
    .dash-stats[b-jklzceevz1] {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-stat--wide[b-jklzceevz1] {
        grid-column: 1 / -1;
    }

    .dash-bottom[b-jklzceevz1] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .dash[b-jklzceevz1] {
        padding: 16px;
    }

    .course-banner[b-jklzceevz1] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .course-banner-divider[b-jklzceevz1] {
        display: none;
    }

    .course-banner-item[b-jklzceevz1] {
        padding: 0;
    }
}

.dash-charts[b-jklzceevz1] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    flex: 1;
}

/*Donut*/
.donut-wrap[b-jklzceevz1] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.donut-svg[b-jklzceevz1] {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}

.donut-legend[b-jklzceevz1] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.donut-legend-row[b-jklzceevz1] {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 19px;
    color: #374151;
}

.donut-legend-dot[b-jklzceevz1] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.donut-legend-label[b-jklzceevz1] {
    flex: 1;
    color: #6b7b8d;
}

.donut-legend-val[b-jklzceevz1] {
    font-weight: 700;
    color: #0f1f3d;
    min-width: 20px;
    text-align: right;
}

/*language-niveau-bar*/
.lang-chart[b-jklzceevz1] {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.lang-legend[b-jklzceevz1] {
    display: flex;
    gap: 14px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.lang-legend-de[b-jklzceevz1]::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: #0057a8;
    margin-right: 5px;
    vertical-align: middle;
}

.lang-legend-en[b-jklzceevz1]::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: #3b9e77;
    margin-right: 5px;
    vertical-align: middle;
}

.lang-legend-de[b-jklzceevz1] {
    color: #0057a8;
}

.lang-legend-en[b-jklzceevz1] {
    color: #3b9e77;
}

.lang-row[b-jklzceevz1] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-level[b-jklzceevz1] {
    font-size: 14px;
    font-weight: 700;
    color: #6b7b8d;
    width: 22px;
    flex-shrink: 0;
}

.lang-bars[b-jklzceevz1] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lang-bar-wrap[b-jklzceevz1] {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 10px;
}

.lang-bar[b-jklzceevz1] {
    height: 10px;
    border-radius: 3px;
    min-width: 4px;
    transition: width 0.4s ease;
}

.lang-bar--de[b-jklzceevz1] {
    background: #0057a8;
}

.lang-bar--en[b-jklzceevz1] {
    background: #3b9e77;
}

.lang-bar-val[b-jklzceevz1] {
    font-size: 13px;
    font-weight: 700;
    color: #6b7b8d;
}

/*nationality*/
.nat-list[b-jklzceevz1] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nat-empty[b-jklzceevz1] {
    font-size: 12px;
    color: #9ba8b5;
    text-align: center;
    padding: 20px 0;
}

.nat-row[b-jklzceevz1] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nat-flag[b-jklzceevz1] {
    font-size: 24px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.nat-info[b-jklzceevz1] {
    flex: 1;
}

.nat-name-row[b-jklzceevz1] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3px;
}

.nat-name[b-jklzceevz1] {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.nat-count[b-jklzceevz1] {
    font-size: 13px;
    font-weight: 700;
    color: #0057a8;
}

.nat-bar-bg[b-jklzceevz1] {
    height: 5px;
    background: #f0f4f9;
    border-radius: 3px;
    overflow: hidden;
}

.nat-bar-fill[b-jklzceevz1] {
    height: 100%;
    background: linear-gradient(90deg, #b5d4f4, #0057a8);
    border-radius: 3px;
    transition: width 0.4s ease;
}


.dash-bottom[b-jklzceevz1] {
    display: flex;
    justify-content: flex-end;
}

.dash-card--quick[b-jklzceevz1] {
    width: 100%;
}

/* Responsive*/
@media (max-width: 1100px) {
    .dash-charts[b-jklzceevz1] {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .dash-charts[b-jklzceevz1] {
        grid-template-columns: 1fr;
    }

    .dash-card--quick[b-jklzceevz1] {
        width: 100%;
    }
}

/*ANIMATION*/

.dash[b-jklzceevz1] {
    animation: dash-fadein-b-jklzceevz1 0.4s ease both;
}

@keyframes dash-fadein-b-jklzceevz1 {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.course-banner[b-jklzceevz1] {
    transition: box-shadow 0.2s ease;
}

    .course-banner:hover[b-jklzceevz1] {
        box-shadow: 0 4px 20px rgba(0, 87, 168, 0.1);
    }


.dash-stat[b-jklzceevz1] {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

    .dash-stat:hover[b-jklzceevz1] {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 87, 168, 0.13);
    }

        .dash-stat:hover .dash-stat-icon[b-jklzceevz1] {
            transform: scale(1.12);
            transition: transform 0.2s ease;
        }

.dash-stat-icon[b-jklzceevz1] {
    transition: transform 0.2s ease;
}

/*Chart-Cards */
.dash-card[b-jklzceevz1] {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

    .dash-card:hover[b-jklzceevz1] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 87, 168, 0.1);
    }


.nat-bar-fill[b-jklzceevz1] {
    animation: nat-grow-b-jklzceevz1 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation-delay: 0.3s;
}

@keyframes nat-grow-b-jklzceevz1 {
    from {
        width: 0 !important;
    }

    to { 
    }
}


.lang-bar[b-jklzceevz1] {
    animation: lang-grow-b-jklzceevz1 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation-delay: 0.2s;
}

@keyframes lang-grow-b-jklzceevz1 {
    from {
        width: 0 !important;
    }
}


.dash-auslastung-fill[b-jklzceevz1] {
    animation: bar-grow-b-jklzceevz1 1s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation-delay: 0.4s;
}

@keyframes bar-grow-b-jklzceevz1 {
    from {
        width: 0 !important;
    }
}


.dash-quick-item[b-jklzceevz1] {
    transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

    .dash-quick-item:hover[b-jklzceevz1] {
        transform: translateX(4px);
        border-color: #b5d4f4;
        background: #f0f5fb;
    }

        .dash-quick-item:hover .dash-quick-arrow[b-jklzceevz1] {
            color: #0057a8;
            transform: translateX(3px);
            transition: transform 0.15s ease, color 0.15s ease;
        }

.dash-quick-arrow[b-jklzceevz1] {
    transition: transform 0.15s ease, color 0.15s ease;
}

/* Buttons */
.dash-btn[b-jklzceevz1] {
    transition: all 0.15s ease;
}

.dash-btn--ghost:hover[b-jklzceevz1] {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 87, 168, 0.12);
}

.dash-btn--primary:hover[b-jklzceevz1] {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 87, 168, 0.25);
}


.dash-stat-num[b-jklzceevz1] {
    animation: num-pop-b-jklzceevz1 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 0.2s;
}

@keyframes num-pop-b-jklzceevz1 {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


.dash-stat:nth-child(1)[b-jklzceevz1] {
    animation: dash-fadein-b-jklzceevz1 0.4s ease 0.05s both;
}

.dash-stat:nth-child(2)[b-jklzceevz1] {
    animation: dash-fadein-b-jklzceevz1 0.4s ease 0.10s both;
}

.dash-stat:nth-child(3)[b-jklzceevz1] {
    animation: dash-fadein-b-jklzceevz1 0.4s ease 0.15s both;
}

.dash-stat:nth-child(4)[b-jklzceevz1] {
    animation: dash-fadein-b-jklzceevz1 0.4s ease 0.20s both;
}

.dash-stat:nth-child(5)[b-jklzceevz1] {
    animation: dash-fadein-b-jklzceevz1 0.4s ease 0.25s both;
}

.dash-charts .dash-card:nth-child(1)[b-jklzceevz1] {
    animation: dash-fadein-b-jklzceevz1 0.4s ease 0.30s both;
}

.dash-charts .dash-card:nth-child(2)[b-jklzceevz1] {
    animation: dash-fadein-b-jklzceevz1 0.4s ease 0.38s both;
}

.dash-charts .dash-card:nth-child(3)[b-jklzceevz1] {
    animation: dash-fadein-b-jklzceevz1 0.4s ease 0.46s both;
}
/* /Components/Pages/Admin/Settings.razor.rz.scp.css */

.settings[b-zbehyopvuo] {
    padding: 28px 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: settings-fadein-b-zbehyopvuo 0.4s ease both;
}

@keyframes settings-fadein-b-zbehyopvuo {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Header*/
.settings-header[b-zbehyopvuo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.settings-title[b-zbehyopvuo] {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f1f3d;
    margin: 0 0 2px;
    letter-spacing: -0.02em;
}

.settings-sub[b-zbehyopvuo] {
    font-size: 12px;
    color: #9ba8b5;
    margin: 0;
}

/*Loading*/
.settings-loading[b-zbehyopvuo] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 80px;
    color: #9ba8b5;
    font-size: 13px;
    font-weight: 600;
}

.settings-spinner[b-zbehyopvuo] {
    width: 32px;
    height: 32px;
    animation: settings-rotate-b-zbehyopvuo 1.4s linear infinite;
}

    .settings-spinner circle[b-zbehyopvuo] {
        fill: none;
        stroke: rgb(0,87,168);
        stroke-width: 4;
        stroke-dasharray: 80;
        stroke-dashoffset: 60;
        stroke-linecap: round;
        animation: settings-stretch-b-zbehyopvuo 1.4s ease-in-out infinite;
    }

@keyframes settings-rotate-b-zbehyopvuo {
    to {
        transform: rotate(360deg);
    }
}

@keyframes settings-stretch-b-zbehyopvuo {
    0% {
        stroke-dashoffset: 75;
    }

    50% {
        stroke-dashoffset: 20;
    }

    100% {
        stroke-dashoffset: 75;
    }
}

/*Alerts*/
.settings-alert[b-zbehyopvuo] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    animation: settings-fadein-b-zbehyopvuo 0.3s ease both;
}

.settings-alert--success[b-zbehyopvuo] {
    background: #e0f4ec;
    color: #0d5c42;
    border: 1px solid #a7dfc5;
}

.settings-alert--error[b-zbehyopvuo] {
    background: #fbeaf0;
    color: #993556;
    border: 1px solid #f4b8cc;
}

.settings-grid[b-zbehyopvuo] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
}

/* Karte*/
.settings-card[b-zbehyopvuo] {
    background: white;
    border: 1px solid #dde6f0;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 1px 4px rgba(0,87,168,0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    animation: settings-fadein-b-zbehyopvuo 0.4s ease both;
}

    .settings-card:nth-child(1)[b-zbehyopvuo] {
        animation-delay: 0.05s;
    }

    .settings-card:nth-child(2)[b-zbehyopvuo] {
        animation-delay: 0.10s;
    }

    .settings-card:nth-child(3)[b-zbehyopvuo] {
        animation-delay: 0.15s;
    }

    .settings-card:hover[b-zbehyopvuo] {
        box-shadow: 0 6px 20px rgba(0,87,168,0.1);
        transform: translateY(-2px);
    }

.settings-card-header[b-zbehyopvuo] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f4f9;
}

.settings-card-icon[b-zbehyopvuo] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.settings-card-title[b-zbehyopvuo] {
    font-size: 13px;
    font-weight: 700;
    color: #0f1f3d;
}

.settings-card-sub[b-zbehyopvuo] {
    font-size: 11px;
    color: #9ba8b5;
    margin-top: 2px;
}


.settings-fields[b-zbehyopvuo] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.settings-field[b-zbehyopvuo] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .settings-field label[b-zbehyopvuo] {
        font-size: 11px;
        font-weight: 700;
        color: #6b7b8d;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .settings-field input[type="text"][b-zbehyopvuo],
    .settings-field input[type="number"][b-zbehyopvuo],
    .settings-field input[type="date"][b-zbehyopvuo],
    .settings-field textarea[b-zbehyopvuo] {
        padding: 9px 12px;
        border: 1.5px solid #dde6f0;
        border-radius: 8px;
        font-size: 13px;
        color: #0f1f3d;
        font-family: inherit;
        background: #f5f8fc;
        outline: none;
        transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
        width: 100%;
        resize: vertical;
    }

        .settings-field input:focus[b-zbehyopvuo],
        .settings-field textarea:focus[b-zbehyopvuo] {
            border-color: rgb(0,87,168);
            box-shadow: 0 0 0 3px rgba(0,87,168,0.08);
            background: white;
        }

/* Prefix-Input */
.settings-input-prefix[b-zbehyopvuo] {
    display: flex;
    align-items: center;
    border: 1.5px solid #dde6f0;
    border-radius: 8px;
    background: #f5f8fc;
    overflow: hidden;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

    .settings-input-prefix:focus-within[b-zbehyopvuo] {
        border-color: rgb(0,87,168);
        box-shadow: 0 0 0 3px rgba(0,87,168,0.08);
        background: white;
    }

    .settings-input-prefix span[b-zbehyopvuo] {
        padding: 9px 12px;
        font-size: 13px;
        color: #9ba8b5;
        background: #eef2f7;
        border-right: 1.5px solid #dde6f0;
        flex-shrink: 0;
    }

    .settings-input-prefix input[b-zbehyopvuo] {
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        flex: 1;
        padding: 9px 12px;
    }

/* Info-Zeile */
.settings-info-row[b-zbehyopvuo] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #9ba8b5;
    padding: 8px 10px;
    background: #f5f8fc;
    border-radius: 7px;
}

    .settings-info-row strong[b-zbehyopvuo] {
        color: #374151;
    }

/*Footer*/
.settings-footer[b-zbehyopvuo] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 4px;
}

.settings-save-btn[b-zbehyopvuo] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 10px;
    border: none;
    background: rgb(0,87,168);
    color: white;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s ease;
}

    .settings-save-btn:hover:not(:disabled)[b-zbehyopvuo] {
        background: rgb(0,67,138);
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(0,87,168,0.3);
    }

    .settings-save-btn:disabled[b-zbehyopvuo] {
        opacity: 0.7;
        cursor: not-allowed;
    }

.settings-btn-spinner[b-zbehyopvuo] {
    width: 16px;
    height: 16px;
    animation: settings-rotate-b-zbehyopvuo 1s linear infinite;
}

    .settings-btn-spinner circle[b-zbehyopvuo] {
        fill: none;
        stroke: white;
        stroke-width: 4;
        stroke-dasharray: 60;
        stroke-dashoffset: 40;
        stroke-linecap: round;
    }

.settings-last-saved[b-zbehyopvuo] {
    font-size: 11px;
    color: #9ba8b5;
}

/*Responsive*/
@media (max-width: 1100px) {
    .settings-grid[b-zbehyopvuo] {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .settings[b-zbehyopvuo] {
        padding: 16px;
    }

    .settings-grid[b-zbehyopvuo] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Done.razor.rz.scp.css */
.done-page[b-2lgk6evwry] {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    background: radial-gradient(circle at top left, rgba(0, 87, 168, 0.08), transparent 28%), linear-gradient(to bottom, #f8fbff, #f3f6fb);
}

.done-card[b-2lgk6evwry] {
    width: 100%;
    max-width: 820px;
    background: #ffffff;
    border: 1px solid #dfe7f1;
    border-radius: 24px;
    padding: 42px 36px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 31, 61, 0.08), 0 2px 10px rgba(15, 31, 61, 0.05);
}

.done-icon-wrap[b-2lgk6evwry] {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.done-icon[b-2lgk6evwry] {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #19b36b, #0b8f52);
    color: white;
    box-shadow: 0 10px 25px rgba(25, 179, 107, 0.28);
}

    .done-icon svg[b-2lgk6evwry] {
        width: 38px;
        height: 38px;
    }

.done-badge[b-2lgk6evwry] {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #e9f8f0;
    color: #0b8f52;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid #cceedd;
}

.done-card h1[b-2lgk6evwry] {
    margin: 0 0 12px;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    line-height: 1.15;
    color: #10213f;
    font-weight: 800;
}

.done-lead[b-2lgk6evwry] {
    margin: 0 auto 28px;
    max-width: 640px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5b76;
}

.done-info[b-2lgk6evwry] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0;
    text-align: left;
}

.done-info-item[b-2lgk6evwry] {
    background: #f8fbff;
    border: 1px solid #dde8f5;
    border-radius: 16px;
    padding: 18px 16px;
}

    .done-info-item h3[b-2lgk6evwry] {
        margin: 0 0 8px;
        font-size: 1rem;
        color: #0f1f3d;
        font-weight: 700;
    }

    .done-info-item p[b-2lgk6evwry] {
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #5b6b85;
    }

.done-note[b-2lgk6evwry] {
    margin-top: 8px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff8e8;
    border: 1px solid #f1dfae;
    color: #7a5b00;
    font-size: 0.95rem;
    line-height: 1.5;
}

.done-actions[b-2lgk6evwry] {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.done-btn[b-2lgk6evwry] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 14px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.primary-btn[b-2lgk6evwry] {
    background: #0057a8;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 87, 168, 0.22);
}

    .primary-btn:hover[b-2lgk6evwry] {
        background: #00488c;
        transform: translateY(-2px);
    }

.secondary-btn[b-2lgk6evwry] {
    background: white;
    color: #0f1f3d;
    border: 1px solid #d7e0eb;
}

    .secondary-btn:hover[b-2lgk6evwry] {
        background: #f7faff;
        transform: translateY(-2px);
    }

@media (max-width: 800px) {
    .done-info[b-2lgk6evwry] {
        grid-template-columns: 1fr;
    }

    .done-card[b-2lgk6evwry] {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .done-actions[b-2lgk6evwry] {
        flex-direction: column;
    }

    .done-btn[b-2lgk6evwry] {
        width: 100%;
    }
}
/* /Components/Pages/LandingPage.razor.rz.scp.css */

.lp-wrap[b-iggsuzmr0u] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}


.lp-hero[b-iggsuzmr0u] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 10px 0;
}

.lp-hero-text[b-iggsuzmr0u] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-tag[b-iggsuzmr0u] {
    display: inline-block;
    background: #e8f0fb;
    color: #0057a8;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
}

.lp-hero-text h1[b-iggsuzmr0u] {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #0f1f3d;
    margin: 0;
}

    .lp-hero-text h1 span[b-iggsuzmr0u] {
        color: #0057a8;
    }

.lp-hero-text p[b-iggsuzmr0u] {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.lp-muted[b-iggsuzmr0u] {
    color: #888;
    font-size: 0.9em;
}


.lp-btn-primary[b-iggsuzmr0u] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0057a8;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    width: fit-content;
    box-shadow: 0 4px 14px rgba(0,87,168,0.3);
}

    .lp-btn-primary:hover[b-iggsuzmr0u] {
        background: #004a8f;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,87,168,0.4);
    }

    .lp-btn-primary svg[b-iggsuzmr0u] {
        transition: transform 0.2s;
    }

    .lp-btn-primary:hover svg[b-iggsuzmr0u] {
        transform: translateX(4px);
    }


.lp-hero-visual[b-iggsuzmr0u] {
    position: relative;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-visual-ring[b-iggsuzmr0u] {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(0, 87, 168, 0.12);
}

.lp-ring-1[b-iggsuzmr0u] {
    width: 300px;
    height: 300px;
    border-color: rgba(0,87,168,0.1);
    animation: ring-pulse-b-iggsuzmr0u 4s ease-in-out infinite;
}

.lp-ring-2[b-iggsuzmr0u] {
    width: 200px;
    height: 200px;
    border-color: rgba(0, 87, 168, 0.18);
    animation: ring-pulse-b-iggsuzmr0u 4s ease-in-out infinite 0.5s;
}
@keyframes ring-pulse-b-iggsuzmr0u{
    0%, 100% {transform: scale(1); opacity: 1;}
    50% {transform: scale(1.04); opacity: 0.7;}
}

.lp-visual-card[b-iggsuzmr0u] {
    position: absolute;
    background: white;
    border: 1px solid #e8eef5;
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    font-size: 13px;
    transition: transform 0.2s ease;
}

.lp-visual-card:hover[b-iggsuzmr0u]{
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,87,168,0.15);
}

    .lp-visual-card span:first-child[b-iggsuzmr0u] {
        font-size: 1.6rem;
    }

    .lp-visual-card strong[b-iggsuzmr0u] {
        display: block;
        color: #0f1f3d;
        font-weight: 600;
    }

    .lp-visual-card small[b-iggsuzmr0u] {
        color: #888;
    }

.lp-vc-1[b-iggsuzmr0u] {
    top: 10px;
    right: 20px;
    animation: float-1-b-iggsuzmr0u 4s ease-in-out infinite;
}

.lp-vc-2[b-iggsuzmr0u] {
    bottom: 60px;
    right: 0;
    animation: float-2-b-iggsuzmr0u 4s ease-in-out infinite 0.8s;
}

.lp-vc-3[b-iggsuzmr0u] {
    bottom: 20px;
    left: 10px;
    animation: float-1-b-iggsuzmr0u 4s ease-in-out infinite 1.4s;
}

@keyframes float-1-b-iggsuzmr0u{
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes float-2-b-iggsuzmr0u{
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.lp-info-strip[b-iggsuzmr0u] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    background: #f5f8ff;
    border: 1px solid #dce8f8;
    border-radius: 16px;
    padding: 28px 40px;
    flex-wrap: nowrap;
}

.lp-info-item[b-iggsuzmr0u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

    .lp-info-item strong[b-iggsuzmr0u] {
        font-size: 1.4rem;
        font-weight: 700;
        color: #0057a8;
    }

    .lp-info-item span[b-iggsuzmr0u] {
        font-size: 0.85rem;
        color: #666;
    }

.lp-divider[b-iggsuzmr0u] {
    width: 1px;
    height: 40px;
    background: #ccd9ec;
}


.lp-sections[b-iggsuzmr0u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.lp-section[b-iggsuzmr0u] {
    background: white;
    border: 1px solid #e8eef5;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .lp-section:hover[b-iggsuzmr0u] {
        transform: translateY(-4px);
        box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    }

.lp-section-icon[b-iggsuzmr0u] {
    font-size: 2rem;
}

.lp-section h3[b-iggsuzmr0u] {
    font-size: 1rem;
    font-weight: 700;
    color: #0f1f3d;
    margin: 0;
}

.lp-section p[b-iggsuzmr0u] {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}


.lp-cta-banner[b-iggsuzmr0u] {
    background: linear-gradient(135deg, #0057a8 0%, #003d7a 100%);
    border-radius: 20px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.lp-cta-text h2[b-iggsuzmr0u] {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 8px;
}

.lp-cta-text p[b-iggsuzmr0u] {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.lp-cta-text .lp-muted[b-iggsuzmr0u] {
    color: rgba(255,255,255,0.55);
}

.lp-cta-banner .lp-btn-primary[b-iggsuzmr0u] {
    background: white;
    color: #0057a8;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

    .lp-cta-banner .lp-btn-primary:hover[b-iggsuzmr0u] {
        background: #f0f6ff;
    }

/*LOGOUT BUTTON*/
.logout-btn[b-iggsuzmr0u] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: black;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

    .logout-btn svg[b-iggsuzmr0u] {
        transition: transform 0.2s ease;
        opacity: 0.85;
    }

    .logout-btn:hover[b-iggsuzmr0u] {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.6);
        color: black;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

        .logout-btn:hover svg[b-iggsuzmr0u] {
            transform: translateX(3px);
            opacity: 1;
        }

    .logout-btn:active[b-iggsuzmr0u] {
        transform: translateY(0);
        box-shadow: none;
    }

/*more info button*/
.lp-btn-secondary[b-iggsuzmr0u] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #0057a8;
    border: 1.5px solid #0057a8;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: fit-content;
    font-family: inherit;
}

    .lp-btn-secondary:hover[b-iggsuzmr0u] {
        background: #e8f0fb;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,87,168,0.15);
    }

/* Modal */
.lp-modal-overlay[b-iggsuzmr0u] {
    position: fixed;
    inset: 0;
    background: rgba(15,31,61,0.4);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    animation: modal-ov-in-b-iggsuzmr0u 0.2s ease both;
}

@keyframes modal-ov-in-b-iggsuzmr0u {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lp-modal[b-iggsuzmr0u] {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    animation: modal-in-b-iggsuzmr0u 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
    overflow: hidden;
}

@keyframes modal-in-b-iggsuzmr0u {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.lp-modal-header[b-iggsuzmr0u] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 24px 16px;
    border-bottom: 1px solid #f0f4f9;
}

    .lp-modal-header h2[b-iggsuzmr0u] {
        font-size: 1.2rem;
        font-weight: 700;
        color: #0f1f3d;
        margin: 0 0 4px;
    }

    .lp-modal-header p[b-iggsuzmr0u] {
        font-size: 12px;
        color: #9ba8b5;
        margin: 0;
    }

.lp-modal-close[b-iggsuzmr0u] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #dde6f0;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7b8d;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

    .lp-modal-close:hover[b-iggsuzmr0u] {
        transform: rotate(90deg);
        background: #fef2f2;
        border-color: #fca5a5;
        color: #dc2626;
    }

.lp-modal-body[b-iggsuzmr0u] {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-modal-section h2[b-iggsuzmr0u]{
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: red;
}

.lp-modal-section h3[b-iggsuzmr0u] {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0057a8;
    margin: 0 0 6px;
}

.lp-modal-section p[b-iggsuzmr0u] {
    font-size: 13px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.lp-modal-stats[b-iggsuzmr0u] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.lp-modal-stat[b-iggsuzmr0u] {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f8fc;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
}

    .lp-modal-stat span[b-iggsuzmr0u] {
        font-size: 1.2rem;
    }

    .lp-modal-stat strong[b-iggsuzmr0u] {
        display: block;
        font-weight: 700;
        color: #0f1f3d;
    }

    .lp-modal-stat small[b-iggsuzmr0u] {
        font-size: 11px;
        color: #9ba8b5;
    }

.lp-modal-footer[b-iggsuzmr0u] {
    padding: 16px 24px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f4f9;
}

.lp-modal-cancel[b-iggsuzmr0u] {
    font-size: 13px;
    color: #6b7b8d;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 4px;
    transition: color 0.15s;
}

    .lp-modal-cancel:hover[b-iggsuzmr0u] {
        color: #374151;
    }


/*RESPONSIVE*/
@media (max-width: 479px) {
    .logout-btn span[b-iggsuzmr0u] {
        display: none;
    }

    .logout-btn[b-iggsuzmr0u] {
        padding: 8px 10px;
        border-radius: 50%;
    }
}

/*MEDIA*/
/* Große Desktops (1200px+) */
@media (min-width: 1200px) {
    .lp-wrap[b-iggsuzmr0u] {
        max-width: 1100px;
        padding: 20px 40px 100px;
        gap: 70px;
    }

    .lp-hero[b-iggsuzmr0u] {
        gap: 60px;
        padding: 20px 0;
    }

    .lp-info-strip[b-iggsuzmr0u] {
        gap: 60px;
        padding: 32px 60px;
    }
}


/* Tablets Landscape (768px - 1023px) */
@media (max-width: 1023px) {
    .lp-hero[b-iggsuzmr0u] {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .lp-hero-visual[b-iggsuzmr0u] {
        height: 260px;
    }

    .lp-ring-1[b-iggsuzmr0u] {
        width: 200px;
        height: 200px;
    }

    .lp-ring-2[b-iggsuzmr0u] {
        width: 140px;
        height: 140px;
    }

    .lp-info-strip[b-iggsuzmr0u] {
        gap: 28px;
        padding: 24px 28px;
    }

    .lp-sections[b-iggsuzmr0u] {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-cta-banner[b-iggsuzmr0u] {
        padding: 36px;
    }
}

/* Tablets Portrait (600px - 767px) */
@media (max-width: 767px) {
    .lp-wrap[b-iggsuzmr0u] {
        padding: 10px 20px 60px;
        gap: 40px;
    }

    .lp-hero[b-iggsuzmr0u] {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0;
    }

    .lp-hero-visual[b-iggsuzmr0u] {
        display: none;
    }

    .lp-hero-text h1[b-iggsuzmr0u] {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

    .lp-info-strip[b-iggsuzmr0u] {
        gap: 20px;
        padding: 20px 24px;
    }

    .lp-info-item strong[b-iggsuzmr0u] {
        font-size: 1.2rem;
    }

    .lp-divider[b-iggsuzmr0u] {
        display: none;
    }

    .lp-sections[b-iggsuzmr0u] {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .lp-section[b-iggsuzmr0u] {
        padding: 20px 18px;
    }

    .lp-cta-banner[b-iggsuzmr0u] {
        padding: 32px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-cta-text h2[b-iggsuzmr0u] {
        font-size: 1.3rem;
    }

    .lp-btn-primary[b-iggsuzmr0u] {
        width: 100%;
        justify-content: center;
    }
}

/* Große Handys (480px - 599px) */
@media (max-width: 599px) {
    .lp-wrap[b-iggsuzmr0u] {
        padding: 8px 16px 48px;
        gap: 32px;
    }

    .lp-tag[b-iggsuzmr0u] {
        font-size: 10px;
        padding: 5px 12px;
    }

    .lp-info-strip[b-iggsuzmr0u] {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        align-items: flex-start;
    }

    .lp-info-item[b-iggsuzmr0u] {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

        .lp-info-item strong[b-iggsuzmr0u] {
            font-size: 1.1rem;
        }

    .lp-sections[b-iggsuzmr0u] {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lp-section[b-iggsuzmr0u] {
        padding: 18px 16px;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .lp-section-icon[b-iggsuzmr0u] {
        font-size: 1.6rem;
        flex-shrink: 0;
    }

    .lp-cta-banner[b-iggsuzmr0u] {
        padding: 24px 18px;
        border-radius: 16px;
    }
}

/* Kleine Handys (max 479px) */
@media (max-width: 479px) {
    .lp-wrap[b-iggsuzmr0u] {
        padding: 6px 12px 40px;
        gap: 28px;
    }

    .lp-hero-text h1[b-iggsuzmr0u] {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
    }

    .lp-hero-text p[b-iggsuzmr0u] {
        font-size: 0.9rem;
    }

    .lp-btn-primary[b-iggsuzmr0u] {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .lp-cta-text h2[b-iggsuzmr0u] {
        font-size: 1.1rem;
    }

    .lp-cta-text p[b-iggsuzmr0u] {
        font-size: 0.85rem;
    }

    .lp-section h3[b-iggsuzmr0u] {
        font-size: 0.9rem;
    }

    .lp-section p[b-iggsuzmr0u] {
        font-size: 0.82rem;
    }
}

/*STICK FIGURE ANIMATION */
.lp-stick-wrap[b-iggsuzmr0u] {
    position: relative;
    width: 80px;
    height: 90px;
    flex-shrink: 0;
    animation: stick-run 0.6s steps(1) infinite;
}

.lp-stick-figure[b-iggsuzmr0u] {
    width: 60px;
    height: 80px;
    animation: stick-bounce-b-iggsuzmr0u 0.6s ease-in-out infinite;
}

/*body bouncing light */
@keyframes stick-bounce-b-iggsuzmr0u {
    0%, 100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-6px) rotate(3deg);
    }
}

/*swing arms*/
.arm-l[b-iggsuzmr0u] {
    transform-origin: 30px 28px;
    animation: arm-swing-l-b-iggsuzmr0u 0.6s ease-in-out infinite;
}

.arm-r[b-iggsuzmr0u] {
    transform-origin: 30px 28px;
    animation: arm-swing-r-b-iggsuzmr0u 0.6s ease-in-out infinite;
}

@keyframes arm-swing-l-b-iggsuzmr0u {
    0%, 100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(30deg);
    }
}

@keyframes arm-swing-r-b-iggsuzmr0u {
    0%, 100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-30deg);
    }
}

/*leg wiggle*/
.leg-l[b-iggsuzmr0u] {
    transform-origin: 30px 45px;
    animation: leg-swing-l-b-iggsuzmr0u 0.6s ease-in-out infinite;
}

.leg-r[b-iggsuzmr0u] {
    transform-origin: 30px 45px;
    animation: leg-swing-r-b-iggsuzmr0u 0.6s ease-in-out infinite;
}

@keyframes leg-swing-l-b-iggsuzmr0u {
    0%, 100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-25deg);
    }
}

@keyframes leg-swing-r-b-iggsuzmr0u {
    0%, 100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(25deg);
    }
}

/*groundline under stick figure*/
.lp-stick-ground[b-iggsuzmr0u] {
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    border-radius: 1px;
    margin: 0 auto;
    animation: ground-pulse-b-iggsuzmr0u 0.6s ease-in-out infinite;
}

@keyframes ground-pulse-b-iggsuzmr0u {
    0%, 100% {
        transform: scaleX(1);
        opacity: 0.4;
    }

    50% {
        transform: scaleX(0.85);
        opacity: 0.2;
    }
}
