/* /Components/AdminNavBar.razor.rz.scp.css */
*[b-31miomwizq] {
    animation: fadeIn-b-31miomwizq 0.15s ease-in-out;
}

.admin-nav[b-31miomwizq] {
    position: sticky;
    display: flex;
    margin-top: -14px;
    gap: 4px;
    padding: 0 16px 0 16px;
    min-height: 52px;
    background: transparent;
    z-index: 10;
}

.admin-nav-item[b-31miomwizq] {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    margin: 2px;
    background: var(--tmk-primary);
    border-radius: 16px;
    transition: .2s;
}

    .admin-nav-item p[b-31miomwizq] {
        color: #fff;
        margin: 0;
        white-space: nowrap;
        line-height: 1;
    }

    .admin-nav-item:hover[b-31miomwizq] {
        background: var(--tmk-primary-hover);
        transform: scale(1.02);
        cursor: pointer;
    }

    .admin-nav-item.selected[b-31miomwizq] {
        background: var(--tmk-primary-active);
        font-weight: 600;
    }

@keyframes fadeIn-b-31miomwizq {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/CommentSection.razor.rz.scp.css */

.comment-section-overlay[b-2guofmug3j] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 600;
}

.comment-section-container[b-2guofmug3j] {
    background-color: rgb(200, 200, 200);
    border: 2px solid #aaa;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    width: clamp(320px, 25vw, 600px);
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 601;
    animation: openCreationAnimation-b-2guofmug3j .25s ease;
}

@keyframes openCreationAnimation-b-2guofmug3j {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .comment-section-container[b-2guofmug3j] {
        padding: 14px;
        border-radius: 12px;
    }
}
/* /Components/ConfirmModal.razor.rz.scp.css */

.confirm-modal-overlay[b-4g6svucawa] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 600;
}

.confirm-modal-container[b-4g6svucawa] {
    background-color: rgb(200, 200, 200);
    border: 2px solid #aaa;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    width: clamp(320px, 25vw, 520px);
    max-width: 90vw;
    max-height: 90vh;
    z-index: 601;
    animation: openCreationAnimation-b-4g6svucawa .25s ease;
}

.confirm-modal-content[b-4g6svucawa] {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    margin: 10px 0;
}

.confirm-modal-footer[b-4g6svucawa] {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

@keyframes openCreationAnimation-b-4g6svucawa {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .confirm-modal-container[b-4g6svucawa] {
        padding: 14px;
        border-radius: 12px;
    }
}
/* /Components/GlobalErrorBoundary.razor.rz.scp.css */
.global-error-banner[b-4ebhk9mhy7] {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 12px 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    max-width: 90vw;
    animation: slideUp-b-4ebhk9mhy7 0.2s ease;
}

.global-error-icon[b-4ebhk9mhy7] {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.global-error-text[b-4ebhk9mhy7] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.9rem;
    color: #333;
}

    .global-error-text strong[b-4ebhk9mhy7] {
        font-weight: 600;
    }

    .global-error-text span[b-4ebhk9mhy7] {
        opacity: 0.75;
        font-size: 0.8rem;
        word-break: break-word;
    }

.global-error-recover[b-4ebhk9mhy7] {
    flex-shrink: 0;
    padding: 6px 14px;
    border: 1px solid #ffc107;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    color: #856404;
    transition: background 0.12s;
}

    .global-error-recover:hover[b-4ebhk9mhy7] {
        background: #fff8e1;
    }

@keyframes slideUp-b-4ebhk9mhy7 {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
/* /Components/IdealprofileMultiView.razor.rz.scp.css */
/* ── Toolbar ── */
.mv-toolbar[b-20amrqjqkt] {
    padding: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ── Table Wrapper (scrollable) ── */
.mv-table-wrapper[b-20amrqjqkt] {
    overflow-x: auto;
    overflow-y: auto;
    max-height: calc(85vh - 180px);
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* ── Table ── */
.mv-table[b-20amrqjqkt] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.9rem;
}

/* ── Sticky Header ── */
.mv-th[b-20amrqjqkt] {
    position: sticky;
    top: 0;
    background-color: #f7f7f7;
    z-index: 2;
    padding: 10px 12px;
    border-bottom: 2px solid #ccc;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 1px 0 #ccc;
}

/* ── Sticky Label Column ── */
.mv-label-col[b-20amrqjqkt] {
    position: sticky;
    left: 0;
    background-color: white;
    z-index: 1;
    min-width: 200px;
    max-width: 280px;
    border-right: 1px solid #e0e0e0;
}

/* Top-left corner: sticky both directions */
.mv-th.mv-label-col[b-20amrqjqkt] {
    z-index: 3;
    text-align: left;
    background-color: #f7f7f7;
}

/* Profile column header */
.mv-profile-col[b-20amrqjqkt] {
    min-width: 160px;
}

/* ── Category Separator ── */
.mv-category-row td[b-20amrqjqkt] {
    background-color: #dce8f0;
    position: sticky;
    left: 0;
}

.mv-category-cell[b-20amrqjqkt] {
    padding: 7px 14px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #2c5282;
}

/* ── Kompetenzfeld Row ── */
.mv-kf-row[b-20amrqjqkt] {
    cursor: pointer;
    background-color: #f0f0f0;
}

.mv-kf-row:hover[b-20amrqjqkt] {
    background-color: #e6e6e6;
}

.mv-kf-row td[b-20amrqjqkt] {
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
}

.mv-kf-label-cell[b-20amrqjqkt] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px !important;
    background-color: #f0f0f0;
}

.mv-kf-row:hover .mv-kf-label-cell[b-20amrqjqkt] {
    background-color: #e6e6e6;
}

.mv-kf-name[b-20amrqjqkt] {
    background-color: var(--tmk-primary);
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.88rem;
    white-space: nowrap;
}

.mv-chevron[b-20amrqjqkt] {
    font-size: 0.7rem;
    display: inline-block;
    transition: transform 0.2s ease;
    color: #555;
}

.mv-chevron.open[b-20amrqjqkt] {
    transform: rotate(90deg);
}

/* ── Skill Row ── */
.mv-skill-row[b-20amrqjqkt] {
    background-color: white;
}

.mv-skill-row:hover[b-20amrqjqkt] {
    background-color: #f9f9f9;
}

.mv-skill-row td[b-20amrqjqkt] {
    border-bottom: 1px solid #eeeeee;
}

.mv-skill-label-cell[b-20amrqjqkt] {
    padding: 6px 12px 6px 34px !important;
    font-size: 0.88rem;
    color: #333;
    background-color: white;
}

.mv-skill-row:hover .mv-skill-label-cell[b-20amrqjqkt] {
    background-color: #f9f9f9;
}

/* ── Input Cells ── */
.mv-input-cell[b-20amrqjqkt] {
    padding: 6px 10px;
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
}

.mv-input[b-20amrqjqkt] {
    width: 72px;
    padding: 4px 6px;
    border-radius: 4px;
    border: 1px solid #bbb;
    background: white;
    font-size: 0.88rem;
    text-align: center;
    transition: border-color 0.15s;
}

.mv-input:focus[b-20amrqjqkt] {
    outline: 2px solid var(--tmk-primary);
    outline-offset: 1px;
    border-color: var(--tmk-primary);
}

.mv-input-skill[b-20amrqjqkt] {
    border-color: #ccc;
    background-color: #fafafa;
}

.mv-hint[b-20amrqjqkt] {
    font-size: 0.75rem;
    color: #777;
    margin-left: 5px;
    display: inline-block;
}

/* ── Profil-Selektor ── */
.mv-profile-selector[b-20amrqjqkt] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 0 0 12px 0;
}

.mv-selector-label[b-20amrqjqkt] {
    font-weight: 600;
    font-size: 0.85rem;
    color: #555;
    margin-right: 4px;
}

.mv-profile-toggle[b-20amrqjqkt] {
    padding: 5px 14px;
    border-radius: 20px;
    border: 2px solid #ccc;
    background: white;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.15s ease;
    color: #555;
}

.mv-profile-toggle:hover[b-20amrqjqkt] {
    border-color: var(--tmk-primary);
    color: var(--tmk-primary);
}

.mv-profile-toggle.active[b-20amrqjqkt] {
    background-color: var(--tmk-primary);
    border-color: var(--tmk-primary);
    color: white;
    font-weight: 600;
}

/* ── Keine Auswahl Platzhalter ── */
.mv-no-selection[b-20amrqjqkt] {
    text-align: center;
    padding: 40px;
    color: #888;
    font-size: 1rem;
}

/* ── Spinner-Pfeile bei number-Inputs ausblenden ── */
.mv-input[b-20amrqjqkt]::-webkit-inner-spin-button,
.mv-input[b-20amrqjqkt]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.mv-input[type=number][b-20amrqjqkt] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* ── Loading ── */
.ip-loading[b-20amrqjqkt] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    flex-direction: column;
    gap: 16px;
}

/* ── Fachkompetenzen rows: not clickable ── */
.mv-kf-row-static[b-20amrqjqkt] {
    cursor: default;
}

.mv-kf-row-static:hover[b-20amrqjqkt] {
    background-color: #f0f0f0;
}

/* ── Dropdown for Überfachliche Skills ── */
.mv-skill-dropdown[b-20amrqjqkt] {
    padding: 3px 6px;
    border-radius: 4px;
    border: 1px solid #bbb;
    background: white;
    font-size: 0.85rem;
    min-width: 120px;
    max-width: 160px;
    cursor: pointer;
}

.mv-skill-dropdown:focus[b-20amrqjqkt] {
    outline: 2px solid var(--tmk-primary);
    outline-offset: 1px;
    border-color: var(--tmk-primary);
}

/* ── Calculated KF average for Überfachliche (read-only) ── */
.mv-calc-value[b-20amrqjqkt] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--tmk-primary);
    display: inline-block;
    min-width: 30px;
    text-align: center;
}
/* /Components/IdealprofilKompetenzfeldLine.razor.rz.scp.css */
.ip-kompetenzfeld-line[b-25ulg2su0e] {
    display: grid;
    grid-template-columns: 1fr 200px;
    align-items: center;
    gap: 12px;
    margin: 6px;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px 14px;
    transition: background-color 0.15s ease;
}

    .ip-kompetenzfeld-line:hover[b-25ulg2su0e] {
        background-color: #ececec;
    }

.ip-kompetenzfeld-name[b-25ulg2su0e] {
    font-weight: bold;
    margin: 0;
    font-size: 1rem;
}

.ip-durchschnitt-input[b-25ulg2su0e] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ip-durchschnitt-field[b-25ulg2su0e] {
    width: 80px;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #bbb;
    background: white;
    font-size: inherit;
    text-align: center;
}

    .ip-durchschnitt-field:focus[b-25ulg2su0e] {
        outline: 2px solid var(--tmk-primary);
        outline-offset: 1px;
    }

.ip-durchschnitt-hint[b-25ulg2su0e] {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}
/* /Components/IdealprofilSkillView.razor.rz.scp.css */
/* ── assessment-header: 2 Spalten passend zur ip-skill-line ── */

.ip-assessment-header[b-vx971bdvp0] {
    display: grid;
    grid-template-columns: 1fr minmax(120px, 160px);
    align-items: center;
    padding: 4px 10px 4px 10px;
    margin-bottom: 4px;
    margin-top: 8px;
    gap: 8px;
}

    .ip-assessment-header .col-title[b-vx971bdvp0] {
        font-weight: 600;
        font-size: 0.85rem;
        opacity: 0.8;
        text-align: center;
    }

/* ── Kompetenzfeld-Card: innerhalb des Modals etwas kompakter ── */

.kl-modal-body .kompetenzfeld-card[b-vx971bdvp0] {
    margin-top: 16px;
    padding: 16px;
    background-color: #e8e8e8;
    border: 1px solid #bbb;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.kl-modal-body .kompetenzfeld-header[b-vx971bdvp0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.kl-modal-body .kompetenzfeld-titel[b-vx971bdvp0] {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    background-color: var(--tmk-primary);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.kl-modal-body .skills-grid[b-vx971bdvp0] {
    min-height: unset;
}

/* ── Spinner / Loading ── */

.ip-loading[b-vx971bdvp0] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
    flex-direction: column;
    gap: 16px;
    position: relative;
}
/* /Components/KompetenzstufenLegende.razor.rz.scp.css */
.legende-wrapper[b-af2a92gkzw] {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.legende-trigger[b-af2a92gkzw] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--tmk-primary);
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    user-select: none;
    transition: all 0.25s ease;
}

.legende-trigger:hover[b-af2a92gkzw] {
    transform: scale(1.1);
}

.legende-popup[b-af2a92gkzw] {
    display: none;
    position: absolute;
    bottom: 44px;
    right: 0;
    width: 320px;
    max-height: 60vh;
    overflow-y: auto;
    background: white;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.legende-wrapper:hover .legende-popup[b-af2a92gkzw],
.legende-wrapper:focus-within .legende-popup[b-af2a92gkzw] {
    display: block;
}

.legende-item[b-af2a92gkzw] {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

    .legende-item:last-child[b-af2a92gkzw] {
        border-bottom: none;
        margin-bottom: 0;
    }

    .legende-item strong[b-af2a92gkzw] {
        display: block;
        margin-bottom: 4px;
        color: var(--tmk-primary);
    }

    .legende-item p[b-af2a92gkzw] {
        font-size: 0.85rem;
        margin: 0;
        color: #444;
        line-height: 1.4;
    }
/* /Components/LoadingSpinnerScreen.razor.rz.scp.css */

.loading-screen[b-favgtu8hxt] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

.spinner[b-favgtu8hxt] {
    width: 500px;
    height: 500px;
    border: 8px solid transparent;
    border-top: 8px solid var(--tmk-primary);
    border-right: 8px solid var(--tmk-primary);
    border-radius: 50%;
    animation: spin-b-favgtu8hxt 2s linear infinite;
    position: absolute;
}

.loading-text[b-favgtu8hxt] {
    position: relative;
    font-size: 1.5rem;
    color: #333;
}

    .loading-text[b-favgtu8hxt]::after {
        content: '';
        animation: dots-b-favgtu8hxt 1.5s steps(4, end) infinite;
    }

.loading-text-time[b-favgtu8hxt] {
    position: relative;
    font-size: 1.5rem;
    color: #333;
}

@keyframes spin-b-favgtu8hxt {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes dots-b-favgtu8hxt {
    0% {
        content: '';
    }

    25% {
        content: '.';
    }

    50% {
        content: '..';
    }

    75% {
        content: '...';
    }
}
/* /Components/NoPermissionModal.razor.rz.scp.css */

.confirm-modal-overlay[b-kl1ug8ify7] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 600;
}

.confirm-modal-container[b-kl1ug8ify7] {
    background-color: rgb(200, 200, 200);
    border: 2px solid #aaa;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    width: 25%;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 601;
    animation: openCreationAnimation-b-kl1ug8ify7 .25s ease;
}

.confirm-modal-content[b-kl1ug8ify7] {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    margin: 10px 0;
}

.confirm-modal-footer[b-kl1ug8ify7] {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

@keyframes openCreationAnimation-b-kl1ug8ify7 {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* /Components/NotificationHost.razor.rz.scp.css */
.notification-container[b-y0qyinr5g7] {
    position: fixed;
    bottom: 1vh;
    top: auto;
    right: .5vw;
    z-index: 2147483647;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .5rem;
    pointer-events: none;
}

.notification[b-y0qyinr5g7] {
    pointer-events: auto;
    min-width: 280px;
    max-width: 380px;
    background: #fefefe;
    border-radius: 4px;
    padding: .75rem 2.5rem .75rem .9rem;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.notification-title[b-y0qyinr5g7] {
    font-weight: 700;
    margin-bottom: .15rem;
}

.notification-message[b-y0qyinr5g7] {
    line-height: 1.35;
}

.notification-close[b-y0qyinr5g7] {
    position: absolute;
    top: 6px;
    right: 8px;
    border: 0;
    background: transparent;
    color: #bbb;
    font-size: 14px;
    cursor: pointer;
    padding: .2rem .4rem;
    border-radius: 6px;
}

    .notification-close:hover[b-y0qyinr5g7] {
        color: #fff;
        background: rgba(255,255,255,.06);
    }

.notification-info[b-y0qyinr5g7] {
    border-color: var(--notification-info);
}

.notification-success[b-y0qyinr5g7] {
    border-color: var(--notification-success);
}

.notification-warning[b-y0qyinr5g7] {
    border-color: var(--notification-warning);
}

.notification-error[b-y0qyinr5g7] {
    border-color: var(--notification-error);
}

@keyframes slideInBottom-b-y0qyinr5g7 {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeOut-b-y0qyinr5g7 {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-6px);
    }
}

.slide-in[b-y0qyinr5g7] {
    animation: slideInBottom-b-y0qyinr5g7 .18s ease-out;
}

.fade-out[b-y0qyinr5g7] {
    animation: fadeOut-b-y0qyinr5g7 .25s ease-in forwards;
}
/* /Components/SettingsCategory.razor.rz.scp.css */
.settings-category[b-sx4cxwnu51] {
    border: 2px solid #aaa;
    border-radius: 14px;
    background-color: rgba(180, 180, 180, 0.15);
    box-shadow: 0 3px 6px rgba(0,0,0,0.4);
    overflow: hidden;
}

.settings-header[b-sx4cxwnu51] {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.1);
}

    .settings-header h2[b-sx4cxwnu51] {
        margin: 0;
        font-size: 1.3rem;
    }

.chevron[b-sx4cxwnu51] {
    font-size: 1.8rem;
    transition: transform 0.2s ease;
}

    .chevron.open[b-sx4cxwnu51] {
        transform: rotate(180deg);
    }

.settings-content[b-sx4cxwnu51] {
    padding: 20px;
    animation: fadeIn-b-sx4cxwnu51 0.15s ease-in-out;
}

@keyframes fadeIn-b-sx4cxwnu51 {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/SkillLine.razor.rz.scp.css */
.skillContainer[b-lalcncx77d] {
    display: grid;
    grid-template-columns: 1fr 40px minmax(120px, 160px) minmax(100px, 160px) minmax(120px, 160px);
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    min-width: 250px;
}

    .skillContainer.with-fremd[b-lalcncx77d] {
        grid-template-columns: 1fr 40px minmax(100px, 140px) minmax(80px, 120px) minmax(100px, 140px) minmax(80px, 130px);
    }

    .skillContainer.fremd-only[b-lalcncx77d] {
        grid-template-columns: 1fr 40px minmax(120px, 220px);
    }

    .skillContainer p[b-lalcncx77d] {
        font-weight: bold;
        margin: 0;
    }

    .skillContainer select[b-lalcncx77d] {
        min-width: 0;
        width: 100%;
        text-align: left;
    }

select.empty[b-lalcncx77d] {
    border: 2px solid red;
}

.skill-name p[b-lalcncx77d] {
    font-weight: bold;
    margin: 0;
}

.select-cell[b-lalcncx77d] {
    display: flex;
    justify-content: center;
}

.comment-button[b-lalcncx77d] {
    width: 35px;
    height: 35px;
    border: none;
    border-style: none;
    border-radius: 256px;
    position: relative;
}

    .comment-button svg[b-lalcncx77d] {
        transform: translateX(-6px);
    }

    .comment-button:hover[b-lalcncx77d] {
        background-color: rgba(150, 150, 150, 200);
    }

.comment-section-box-container[b-lalcncx77d] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    padding: 8px;
    margin: 8px auto 16px auto;
    min-height: 10vh;
    max-height: 75vh;
    align-self: start;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item[b-lalcncx77d] {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    background-color: rgba(200, 200, 200, 0.75);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    align-items: flex-start;
    transition: transform .08s ease;
    margin-bottom: 12px;
}

    .comment-item:hover[b-lalcncx77d] {
        transform: scale(1.01);
        border: 1px solid rgb(0, 0, 0);
    }

.comment-avatar[b-lalcncx77d] {
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30,130,230,0.12), rgba(30,130,230,0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1e4f7a;
    font-size: 16px;
    border: 1px solid rgba(30,130,230,0.18);
    flex-shrink: 0;
}

.comment-content[b-lalcncx77d] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.comment-header[b-lalcncx77d] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.comment-author[b-lalcncx77d] {
    font-weight: 700;
    font-size: 14px;
}

.comment-meta[b-lalcncx77d] {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
}

.comment-message[b-lalcncx77d] {
    font-size: 14px;
    line-height: 1.4;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.comment-actions[b-lalcncx77d] {
    margin-top: 4px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.comment-btn[b-lalcncx77d] {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: background .12s, transform .08s;
}

    .comment-btn:hover[b-lalcncx77d] {
        transform: translateY(-1px);
    }
    /*REMOVE:*/
    .comment-btn.debug[b-lalcncx77d] {
        background: rgba(255, 100, 255, 0.7);
        border-color: rgba(220, 50, 220, 0.25);
    }

    .comment-btn.edit[b-lalcncx77d] {
        background: rgba(255, 235, 205, 0.7);
        border-color: rgba(255, 200, 80, 0.25);
    }

    .comment-btn.delete[b-lalcncx77d] {
        background: rgba(255, 150, 150, 0.7);
        border-color: rgba(255, 80, 80, 0.25);
    }

    .comment-btn.reply[b-lalcncx77d] {
        background: rgba(230, 245, 255, 0.6);
        border-color: rgba(30,130,230,0.12);
    }

.comment-textarea[b-lalcncx77d] {
    width: 100%;
    min-height: 80px;
    max-height: 220px;
    resize: vertical;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgb(230, 230, 230);
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03) inset;
    margin-bottom: 8px;
    font-family: inherit;
}

.comment-form-actions[b-lalcncx77d] {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.comment-post-btn[b-lalcncx77d] {
    background: rgba(30,130,230,0.08);
    border: 1px solid rgba(30,130,230,0.2);
    color: #1e4f7a;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: transform .08s ease, background .12s ease;
}

    .comment-post-btn:disabled[b-lalcncx77d],
    .comment-post-btn[aria-disabled="true"][b-lalcncx77d] {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    .comment-post-btn:not(:disabled):hover[b-lalcncx77d] {
        transform: translateY(-2px);
        background: rgba(30,130,230,0.12);
    }

.comment-badge[b-lalcncx77d] {
    position: absolute;
    bottom: -2px;
    right: -2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 0 0 2px #f5f5f5;
}

    .comment-badge.has[b-lalcncx77d] {
        background-color: #1e82e6;
    }

    .comment-badge.new[b-lalcncx77d] {
        background-color: #e60000;
    }
/* /Components/SkillView.razor.rz.scp.css */
.kompetenzfeld-container[b-flqpvhxu9p] {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    padding: 20px;
}

.kompetenzfeld-card[b-flqpvhxu9p] {
    min-width: 0;
    background-color: #f2f2f2;
    border: 1px solid #aaa;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    align-self: start;
    margin-top: 25px;
}

.kompetenzfeld-header[b-flqpvhxu9p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.kompetenzfeld-titel[b-flqpvhxu9p] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: bold;
    background-color: var(--tmk-primary);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.kompetenzfeld-schnitt[b-flqpvhxu9p] {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.85;
    background-color: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.kompetenzfeld-action-titel[b-flqpvhxu9p] {
    font-size: 1rem;
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    background-color: transparent;
    transition: transform 0.2s ease;
}

    .kompetenzfeld-action-titel.open[b-flqpvhxu9p] {
        transform: rotate(180deg);
    }

.skills-grid[b-flqpvhxu9p] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
    min-height: 300px;
    padding-right: 5px;
}

.animated-panel[b-flqpvhxu9p] {
    overflow: hidden;
    transition: max-height 1s ease-in-out, opacity 1s ease-in-out;
    max-height: 1500px;
    opacity: 1;
    padding-top: 10px;
}

.loading-screen[b-flqpvhxu9p] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

.spinner[b-flqpvhxu9p] {
    width: 500px;
    height: 500px;
    border: 8px solid transparent;
    border-top: 8px solid #00246B;
    border-right: 8px solid #00246B;
    border-radius: 50%;
    animation: spin-b-flqpvhxu9p 2s linear infinite;
    position: absolute;
}

.loading-text[b-flqpvhxu9p] {
    position: relative;
    font-size: 1.5rem;
    color: #333;
}

.toggle-all-button[b-flqpvhxu9p] {
    margin-bottom: 1rem;
    padding: 8px 16px;
    font-size: 1rem;
    background-color: #00246B;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .toggle-all-button:hover[b-flqpvhxu9p] {
        background-color: #023499;
    }

.assessment-header[b-flqpvhxu9p] {
    display: grid;
    grid-template-columns: 1fr 40px minmax(120px, 185px) minmax(100px, 150px) minmax(120px, 180px);
    align-items: center;
    text-align: center;
    padding: 0 10px 0 0;
    margin-bottom: 8px;
}

    .assessment-header.with-fremd[b-flqpvhxu9p] {
        grid-template-columns: 1fr 40px minmax(100px, 140px) minmax(90px, 130px) minmax(100px, 150px) minmax(90px, 140px);
    }

    .assessment-header.fremd-only[b-flqpvhxu9p] {
        grid-template-columns: 1fr 40px minmax(120px, 220px);
    }

    .assessment-header > div[b-flqpvhxu9p] {
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        padding: 4px;
    }

    .assessment-header .col-title[b-flqpvhxu9p] {
        text-align: left;
        font-weight: 600;
        opacity: 0.9;
        padding-left: 4px;
    }

    .assessment-header .col-spacer[b-flqpvhxu9p] {
    }

@keyframes spin-b-flqpvhxu9p {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Components/TMKButton.razor.rz.scp.css */

.tmk-button[b-18oqmeoiho] {
    margin-bottom: 1rem;
    padding: 6px 14px;
    font-size: 1rem;
    background-color: var(--tmk-primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-items: center;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

    .tmk-button:hover[b-18oqmeoiho] {
        background-color: var(--tmk-primary-hover);
    }

    .tmk-button:disabled[b-18oqmeoiho] {
        background-color: rgb(130, 130, 130);
    }

    .tmk-button.selected[b-18oqmeoiho] {
        background-color: var(--tmk-primary-active);
        color: white;
    }
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-cpws7xcac2] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-cpws7xcac2] {
    flex: 1;
}

.sidebar[b-cpws7xcac2] {
    background-color: var(--tmk-primary);
}

.top-row[b-cpws7xcac2] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-cpws7xcac2]  a, .top-row[b-cpws7xcac2]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-cpws7xcac2]  a:hover, .top-row[b-cpws7xcac2]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-cpws7xcac2]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-cpws7xcac2] {
        justify-content: space-between;
    }

    .top-row[b-cpws7xcac2]  a, .top-row[b-cpws7xcac2]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-cpws7xcac2] {
        flex-direction: row;
    }

    .sidebar[b-cpws7xcac2] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-cpws7xcac2] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-cpws7xcac2]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-cpws7xcac2], article[b-cpws7xcac2] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-an7dyxppu4] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-an7dyxppu4] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.5);
}

.navbar-brand[b-an7dyxppu4] {
    font-size: 1.1rem;
}

.bi[b-an7dyxppu4] {
    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-an7dyxppu4] {
    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-lightbulb-fill-nav-menu[b-an7dyxppu4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-lightbulb-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 6a6 6 0 1 1 10.174 4.31c-.203.196-.359.4-.453.619l-.762 1.769A.5.5 0 0 1 10.5 13h-5a.5.5 0 0 1-.46-.302l-.761-1.77a2 2 0 0 0-.453-.618A5.98 5.98 0 0 1 2 6m3 8.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1l-.224.447a1 1 0 0 1-.894.553H6.618a1 1 0 0 1-.894-.553L5.5 15a.5.5 0 0 1-.5-.5'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-an7dyxppu4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6'/%3E%3C/svg%3E");
}

.bi-info-circle-fill-nav-menu[b-an7dyxppu4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm.93-9.412-1 4.705c-.07.34.029.533.304.533.194 0 .487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2.29-.287zM8 5.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2'/%3E%3C/svg%3E");
}

.bi-gear-fill-nav-menu[b-an7dyxppu4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-gear-fill' viewBox='0 0 16 16'%3E%3Cpath d='M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z'/%3E%3C/svg%3E");
}

.bi-search-nav-menu[b-an7dyxppu4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0'/%3E%3C/svg%3E");
}

.bi-people-fill-nav-menu[b-an7dyxppu4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-people-fill' viewBox='0 0 16 16'%3E%3Cpath d='M7 14s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6m-5.784 6A2.24 2.24 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.3 6.3 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1zM4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5'/%3E%3C/svg%3E");
}

.bi-graph-up-arrow-nav-menu[b-an7dyxppu4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-graph-up-arrow' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M0 0h1v15h15v1H0zm10 3.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-1 0V4.9l-3.613 4.417a.5.5 0 0 1-.74.037L7.06 6.767l-3.656 5.027a.5.5 0 0 1-.808-.588l4-5.5a.5.5 0 0 1 .758-.06l2.609 2.61L13.445 4H10.5a.5.5 0 0 1-.5-.5'/%3E%3C/svg%3E");
}

.bi-card-text-nav-menu[b-an7dyxppu4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M14.5 3a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5zm-13-1A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2z'/%3E%3Cpath d='M3 5.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5M3 8a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9A.5.5 0 0 1 3 8m0 2.5a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5'/%3E%3C/svg%3E");
}

.nav-item[b-an7dyxppu4] {
    font-size: 1rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-an7dyxppu4] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-an7dyxppu4] {
        padding-bottom: 0.5rem;
    }

    .nav-item[b-an7dyxppu4]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        line-height: 3rem;
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0 .75rem;
    }

    .nav-item[b-an7dyxppu4]  a.active {
        background-color: var(--tmk-primary-active);
        color: white;
    }

    .nav-item[b-an7dyxppu4]  a:hover {
        background-color: var(--tmk-primary-hover);
        color: white;
    }

@media (min-width: 641px) {
    .navbar-toggler[b-an7dyxppu4] {
        display: none;
    }

    .collapse[b-an7dyxppu4] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-an7dyxppu4] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/AdminPanel/Assessments.razor.rz.scp.css */
*[b-rtsqnsxen0] {
    animation: fadeIn-b-rtsqnsxen0 0.15s ease-in-out;
}

.manage-kompetenzfelder-container[b-rtsqnsxen0] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 16px;
    padding: 20px;
    margin-top: 26px;
    height: 90vh;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    align-self: start;
    overflow: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.manage-kompetenzfelder-button-list-container[b-rtsqnsxen0] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    width: 20%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.manage-kompetenzfelder-list-container[b-rtsqnsxen0] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    height: 100%;
    overflow: auto;
}

    .draggable-item[b-rtsqnsxen0] {
        height: auto;
        background: #bbb;
        margin: 15px;
        align-self: start;
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        text-align: center;
        transition: border-radius 2s ease;
    }

        .draggable-item:hover[b-rtsqnsxen0] {
            background: #aaa;
            cursor: pointer;
        }

        .draggable-item.selected[b-rtsqnsxen0] {
            background: #999;
            border-radius: 8px;
        }

        .draggable-item.drag-over[b-rtsqnsxen0] {
            outline: 3px dashed var(--tmk-primary, #4a90e2);
            border-radius: 8px;
        }

        .draggable-item p[b-rtsqnsxen0] {
            font-size: 1.5rem;
            margin: 10px;
        }


.item-actions[b-rtsqnsxen0] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.manage-kompetenzfeld-info-container[b-rtsqnsxen0] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    width: 40%;
    height: 100%;
    overflow: auto;
}

.head[b-rtsqnsxen0] {
    margin: 15px;
    background-color: #bfbfbf;
    border-radius: 8px;
    border: 2px solid #aaa;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
}

    .head .info-row[b-rtsqnsxen0] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .head p[b-rtsqnsxen0] {
        font-size: 1.5rem;
        margin: 10px;
    }

.icon-btn[b-rtsqnsxen0] {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 8px;
}

    .icon-btn:hover[b-rtsqnsxen0] {
        background: rgba(0,0,0,0.06);
    }

    .icon-btn:focus-visible[b-rtsqnsxen0] {
        outline: 2px solid var(--tmk-primary-active);
        outline-offset: 2px;
    }

    .icon-btn svg[b-rtsqnsxen0] {
        width: 35px;
        height: 35px;
    }

.icon-pencil[b-rtsqnsxen0] {
    display: inline-block;
    width: 35px;
    height: 35px;
    font-size: 32px;
    line-height: 35px;
    text-align: center;
}

    .icon-pencil.editing[b-rtsqnsxen0] {
        color: color-mix(in srgb, var(--tmk-red) 85%, white);
    }

.editing-input[b-rtsqnsxen0] {
    flex: 1;
    background-color: #dfdfdf;
    border: 2px solid #aaa;
}

.item-actons[b-rtsqnsxen0] {
    display: inline-flex;
}

.create-kompetenzfeld-overlay[b-rtsqnsxen0] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 600;
}

.create-kompetenzfeld-container[b-rtsqnsxen0] {
    background-color: rgb(200, 200, 200);
    border: 2px solid #aaa;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    width: 25%;
    height: 40%;
    max-width: 90vw;
    z-index: 601;
    animation: openCreationAnimation-b-rtsqnsxen0 .25s ease;
}

@keyframes openCreationAnimation-b-rtsqnsxen0 {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn-b-rtsqnsxen0 {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/AdminPanel/Employee.razor.rz.scp.css */
*[b-2mthu3yycu] {
    animation: fadeIn-b-2mthu3yycu 0.15s ease-in-out;
}

.manage-employees-container[b-2mthu3yycu] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 16px;
    padding: 20px;
    margin-top: 26px;
    height: 90vh;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    align-self: start;
    overflow: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.manage-employee-button-list-container[b-2mthu3yycu] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    width: 20%;
    height: 100%;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.manage-employee-list-container[b-2mthu3yycu] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    width: 40%;
    height: 100%;
    overflow: auto;
}

    .manage-employee-list-container div[b-2mthu3yycu] {
        height: auto;
        background: #bbb;
        margin: 15px;
        align-self: start;
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        text-align: center;
        transition: border-radius 2s ease;
    }

        .manage-employee-list-container div:hover[b-2mthu3yycu] {
            background: #aaa;
            cursor: pointer;
        }

        .manage-employee-list-container div.selected[b-2mthu3yycu] {
            background: #999;
            border-radius: 8px;
        }

        .manage-employee-list-container div p[b-2mthu3yycu] {
            font-size: 1.5rem;
            margin: 10px;
            font-weight: bold;
        }

.manage-employee-info-container[b-2mthu3yycu] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    width: 40%;
    height: 100%;
    overflow: auto;
}

.head[b-2mthu3yycu] {
    margin: 15px;
    background-color: #bfbfbf;
    border-radius: 8px;
    border: 2px solid #aaa;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
}

    .head .info-row[b-2mthu3yycu] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .head p[b-2mthu3yycu] {
        font-size: 1.5rem;
        margin: 10px;
    }

.icon-btn[b-2mthu3yycu] {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 8px;
}

    .icon-btn:hover[b-2mthu3yycu] {
        background: rgba(0,0,0,0.06);
    }

    .icon-btn:focus-visible[b-2mthu3yycu] {
        outline: 2px solid var(--tmk-primary-active);
        outline-offset: 2px;
    }

.icon-pencil[b-2mthu3yycu] {
    font-size: 34px;
    line-height: 1;
}

    .icon-pencil.editing[b-2mthu3yycu] {
        color: color-mix(in srgb, var(--tmk-red) 85%, white);
    }

.editing-input[b-2mthu3yycu] {
    flex: 1;
    background-color: #dfdfdf;
    border: 2px solid #aaa;
}

.roles-container[b-2mthu3yycu] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.role-checkbox[b-2mthu3yycu] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .role-checkbox input[type="checkbox"][b-2mthu3yycu] {
        accent-color: var(--tmk-primary);
    }

@keyframes fadeIn-b-2mthu3yycu {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/AdminPanel/Fachgruppen.razor.rz.scp.css */
*[b-sex4c2opzl] {
    animation: fadeIn-b-sex4c2opzl 0.15s ease-in-out;
}

    * input[type="checkbox"][b-sex4c2opzl] {
        accent-color: var(--tmk-primary);
    }

.manage-kompetenzfelder-container[b-sex4c2opzl] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 16px;
    padding: 20px;
    margin-top: 26px;
    height: 90vh;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    align-self: start;
    overflow: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.manage-kompetenzfelder-button-list-container[b-sex4c2opzl] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    width: 20%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.manage-kompetenzfelder-list-container[b-sex4c2opzl] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    height: 100%;
    overflow: auto;
}

    .draggable-item[b-sex4c2opzl] {
        height: auto;
        background: #bbb;
        margin: 15px;
        align-self: start;
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        text-align: center;
        transition: border-radius 2s ease;
    }

        .draggable-item:hover[b-sex4c2opzl] {
            background: #aaa;
            cursor: pointer;
        }

        .draggable-item.selected[b-sex4c2opzl] {
            background: #999;
            border-radius: 8px;
        }

        .draggable-item.drag-over[b-sex4c2opzl] {
            outline: 3px dashed var(--tmk-primary, #4a90e2);
            border-radius: 8px;
        }

        .draggable-item p[b-sex4c2opzl] {
            font-size: 1.5rem;
            margin: 10px;
        }

.manage-kompetenzfeld-info-container[b-sex4c2opzl] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    width: 40%;
    height: 100%;
    overflow: auto;
}

.head[b-sex4c2opzl] {
    margin: 15px;
    background-color: #bfbfbf;
    border-radius: 8px;
    border: 2px solid #aaa;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
}

    .head .info-row[b-sex4c2opzl] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .head p[b-sex4c2opzl] {
        font-size: 1.5rem;
        margin: 10px;
    }

.check-input[b-sex4c2opzl] {
    accent-color: var(--tmk-primary);
    margin-right: 6px;
    width: 26px;
    height: 26px;
    border: 2px solid #aaa;
}

    .check-input:disabled[b-sex4c2opzl] {
        accent-color: rgb(0, 0, 0);
        cursor: not-allowed;
    }

.item-actions[b-sex4c2opzl] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.icon-btn[b-sex4c2opzl] {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 8px;
}

    .icon-btn:hover[b-sex4c2opzl] {
        background: rgba(0,0,0,0.06);
    }

    .icon-btn:focus-visible[b-sex4c2opzl] {
        outline: 2px solid var(--tmk-primary-active);
        outline-offset: 2px;
    }

.icon-btn[b-sex4c2opzl] {
    width: 40px;
    height: 40px;
}
.icon-pencil[b-sex4c2opzl] { font-size: 24px; }

    .icon-pencil.editing[b-sex4c2opzl] {
        color: color-mix(in srgb, var(--tmk-red) 85%, white);
    }

.editing-input[b-sex4c2opzl] {
    flex: 1;
    background-color: #dfdfdf;
    border: 2px solid #aaa;
}

.item-actons[b-sex4c2opzl] {
    display: inline-flex;
}

@keyframes fadeIn-b-sex4c2opzl {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/AdminPanel/Home.razor.rz.scp.css */
*[b-1rpc0u04xi] {
    animation: fadeIn-b-1rpc0u04xi 0.15s ease-in-out;
}

.help-container[b-1rpc0u04xi] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: Arial, sans-serif;
}

.legend-wrapper[b-1rpc0u04xi] {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.legend-section[b-1rpc0u04xi] {
    background-color: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex: 1 1 48%;
    box-sizing: border-box;
}

.manage-employees-container[b-1rpc0u04xi] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 16px;
    padding: 20px;
    margin-top: 26px;
    height: 55vh;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    align-self: start;
    overflow: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.manage-employee-list-container[b-1rpc0u04xi] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    overflow: auto;
}

    .manage-employee-list-container div[b-1rpc0u04xi] {
        height: auto;
        background: #bbb;
        margin: 15px;
        align-self: start;
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        text-align: center;
        transition: border-radius 2s ease;
    }

        .manage-employee-list-container div:hover[b-1rpc0u04xi] {
            background: #aaa;
            cursor: pointer;
        }

        .manage-employee-list-container div.selected[b-1rpc0u04xi] {
            background: #999;
            border-radius: 8px;
        }

        .manage-employee-list-container div p[b-1rpc0u04xi] {
            font-size: 1.5rem;
            margin: 10px;
            font-weight: bold;
        }

h4[b-1rpc0u04xi] {
    margin: 10px;
}

@media (max-width: 800px) {
    .legend-section[b-1rpc0u04xi] {
        flex: 1 1 100%;
    }
}

@keyframes fadeIn-b-1rpc0u04xi {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/AdminPanel/Idealprofile.razor.rz.scp.css */
*[b-k7ybew1cz3] {
    animation: fadeIn-b-k7ybew1cz3 0.15s ease-in-out;
}

    * input[type="checkbox"][b-k7ybew1cz3] {
        accent-color: var(--tmk-primary);
    }

/* ═══════════════════════════════════════════════════════
   Kompetenzlevel-Manager – Popup im ConfirmModal-Stil
   ═══════════════════════════════════════════════════════ */

.kl-modal-backdrop[b-k7ybew1cz3] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 600;
}

.kl-modal-box[b-k7ybew1cz3] {
    background-color: rgb(200, 200, 200);
    border: 2px solid #aaa;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    width: clamp(480px, 80vw, 1200px);
    max-width: 92vw;
    height: 85vh;
    max-height: 90vh;
    z-index: 601;
    animation: openCreationAnimation-b-k7ybew1cz3 .25s ease;
    overflow: hidden;
}

.kl-modal-header[b-k7ybew1cz3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    flex-shrink: 0;
}

    .kl-modal-header h2[b-k7ybew1cz3] {
        margin: 0;
        font-size: 1.3rem;
        font-weight: 700;
        color: #1a1a1a;
    }

        .kl-modal-header h2 em[b-k7ybew1cz3] {
            font-style: normal;
            color: var(--tmk-primary, #00246B);
        }

.kl-modal-body[b-k7ybew1cz3] {
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
    padding-top: 12px;
}

/* ═══════════════════════════════════════════════════════
   Bestehende Stile (unverändert)
   ═══════════════════════════════════════════════════════ */

.manage-kompetenzfelder-container[b-k7ybew1cz3] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 16px;
    padding: 20px;
    margin-top: 26px;
    height: 90vh;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    align-self: start;
    overflow: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.manage-kompetenzfelder-button-list-container[b-k7ybew1cz3] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    width: 20%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.manage-kompetenzfelder-list-container[b-k7ybew1cz3] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    height: 100%;
    overflow: auto;
}

.draggable-item[b-k7ybew1cz3] {
    height: auto;
    background: #bbb;
    margin: 15px;
    align-self: start;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    text-align: center;
    transition: border-radius 2s ease;
}

    .draggable-item:hover[b-k7ybew1cz3] {
        background: #aaa;
        cursor: pointer;
    }

    .draggable-item.selected[b-k7ybew1cz3] {
        background: #999;
        border-radius: 8px;
    }

    .draggable-item.drag-over[b-k7ybew1cz3] {
        outline: 3px dashed var(--tmk-primary, #4a90e2);
        border-radius: 8px;
    }

    .draggable-item p[b-k7ybew1cz3] {
        font-size: 1.5rem;
        margin: 10px;
    }

.manage-kompetenzfeld-info-container[b-k7ybew1cz3] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    width: 40%;
    height: 100%;
    overflow: auto;
}

.head[b-k7ybew1cz3] {
    margin: 15px;
    background-color: #bfbfbf;
    border-radius: 8px;
    border: 2px solid #aaa;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
}

    .head .info-row[b-k7ybew1cz3] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .head p[b-k7ybew1cz3] {
        font-size: 1.5rem;
        margin: 10px;
    }

.check-input[b-k7ybew1cz3] {
    accent-color: var(--tmk-primary);
    margin-right: 6px;
    width: 26px;
    height: 26px;
    border: 2px solid #aaa;
}

    .check-input:disabled[b-k7ybew1cz3] {
        accent-color: rgb(0, 0, 0);
        cursor: not-allowed;
    }

.item-actions[b-k7ybew1cz3] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.icon-btn[b-k7ybew1cz3] {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 8px;
}

    .icon-btn:hover[b-k7ybew1cz3] {
        background: rgba(0,0,0,0.06);
    }

    .icon-btn:focus-visible[b-k7ybew1cz3] {
        outline: 2px solid var(--tmk-primary-active);
        outline-offset: 2px;
    }

.icon-pencil[b-k7ybew1cz3] {
    font-size: 24px;
}

    .icon-pencil.editing[b-k7ybew1cz3] {
        color: color-mix(in srgb, var(--tmk-red) 85%, white);
    }

.editing-input[b-k7ybew1cz3] {
    flex: 1;
    background-color: #dfdfdf;
    border: 2px solid #aaa;
}

.item-actons[b-k7ybew1cz3] {
    display: inline-flex;
}

@keyframes fadeIn-b-k7ybew1cz3 {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes openCreationAnimation-b-k7ybew1cz3 {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ═══════════════════════════════════════════════════════
   STATUS QUO – Modal-Box
   ═══════════════════════════════════════════════════════ */

.sq-modal-box[b-k7ybew1cz3] {
    width: 90vw;
    max-width: 1300px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    background-color: rgb(235, 237, 242);
    border: 2px solid #c0c8d8;
    padding: 12px;
}

/* ── Auswahl-Zeile ── */
.sq-selector-row[b-k7ybew1cz3] {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--tmk-primary, #00246B) 0%, color-mix(in srgb, var(--tmk-primary, #00246B) 70%, #4a7fce) 100%);
    flex-shrink: 0;
    border-radius: 12px 12px 0 0;
    margin: -4px -4px 0 -4px;
}

.sq-selector[b-k7ybew1cz3] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sq-selector-label[b-k7ybew1cz3] {
    font-weight: 700;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sq-select[b-k7ybew1cz3] {
    width: 100%;
    padding: 9px 14px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    font-size: 0.95rem;
    background-color: rgba(255,255,255,0.95);
    color: #1a1a1a;
    font-weight: 500;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

    .sq-select:focus[b-k7ybew1cz3] {
        outline: none;
        border-color: rgba(255,255,255,0.8);
        box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
    }

.sq-vs-label[b-k7ybew1cz3] {
    font-size: 1.1rem;
    font-weight: 800;
    color: rgba(255,255,255,0.6);
    padding-bottom: 10px;
    letter-spacing: 0.05em;
}

/* ── Platzhalter ── */
.sq-placeholder[b-k7ybew1cz3] {
    text-align: center;
    margin-top: 8vh;
    color: #888;
    font-size: 1rem;
    line-height: 1.8;
}

/* ── Legende ── */
.sq-legend[b-k7ybew1cz3] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    font-size: 0.82rem;
    flex-wrap: wrap;
    background-color: #e8ecf2;
    border: 1px solid #ccd3e0;
    border-radius: 8px;
    margin-bottom: 12px;
}

.sq-legend-title[b-k7ybew1cz3] {
    font-weight: 700;
    color: #555;
}

.sq-legend-item[b-k7ybew1cz3] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
}

/* ── Spalten-Header ── */
.sq-column-header[b-k7ybew1cz3] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 8px 14px;
    font-weight: 700;
    font-size: 0.82rem;
    color: #fff;
    background-color: var(--tmk-primary, #00246B);
    border-radius: 8px;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.sq-col-skill[b-k7ybew1cz3] {
}

.sq-col-ist[b-k7ybew1cz3], .sq-col-soll[b-k7ybew1cz3] {
    text-align: center;
}

.sq-column-header em[b-k7ybew1cz3] {
    font-style: normal;
    font-weight: 400;
    opacity: 0.8;
    text-transform: none;
    letter-spacing: 0;
}

/* ── Kompetenzfeld-Karte ── */
.kompetenzfeld-container[b-k7ybew1cz3] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    /* Abstand zwischen den SettingsCategory-Blöcken */
    .kompetenzfeld-container > * + *[b-k7ybew1cz3] {
        margin-top: 16px;
    }

    /* Abstand zwischen Karten innerhalb einer SettingsCategory */
    .kompetenzfeld-container .kompetenzfeld-card + .kompetenzfeld-card[b-k7ybew1cz3] {
        margin-top: 8px;
    }

.kompetenzfeld-card[b-k7ybew1cz3] {
    background-color: rgb(240, 240, 240);
    border: 1px solid #d0d8e8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 36, 107, 0.07);
}

.kompetenzfeld-header[b-k7ybew1cz3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(90deg, #dde4f0 0%, #e8ecf5 100%);
    border-bottom: 1px solid #c8d0e0;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s ease;
}

    .kompetenzfeld-header:hover[b-k7ybew1cz3] {
        background: linear-gradient(90deg, #cfd8ee 0%, #dce4f2 100%);
    }

.kompetenzfeld-titel[b-k7ybew1cz3] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--tmk-primary, #00246B);
    flex-wrap: wrap;
}

.kompetenzfeld-schnitt[b-k7ybew1cz3] {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background-color: rgba(0, 36, 107, 0.10);
    color: var(--tmk-primary, #00246B);
    border: 1px solid rgba(0, 36, 107, 0.18);
    white-space: nowrap;
}

.sq-soll-schnitt[b-k7ybew1cz3] {
    background-color: rgba(0, 36, 107, 0.06);
    color: color-mix(in srgb, var(--tmk-primary, #00246B) 75%, #555);
    border: 1px dashed rgba(0, 36, 107, 0.25);
}

.kompetenzfeld-action-titel[b-k7ybew1cz3] {
    font-size: 0.85rem;
    color: #888;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

    .kompetenzfeld-action-titel.open[b-k7ybew1cz3] {
        transform: rotate(180deg);
    }

/* ── Skill-Grid-Header (innerhalb eines Kompetenzfelds) ── */
.sq-skill-grid-header[b-k7ybew1cz3] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 6px 14px;
    font-weight: 700;
    font-size: 0.75rem;
    color: #888;
    background-color: rgb(228, 231, 240);
    border-bottom: 1px solid #d0d5e4;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
}

    .sq-skill-grid-header > div:first-child[b-k7ybew1cz3] {
        text-align: left;
    }

/* ── Skill-Zeilen ── */
.sq-skill-row[b-k7ybew1cz3] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 8px 14px;
    border-bottom: 1px solid rgb(218, 221, 230);
    transition: background-color 0.1s ease;
}

    .sq-skill-row:last-child[b-k7ybew1cz3] {
        border-bottom: none;
    }

    .sq-skill-row:hover[b-k7ybew1cz3] {
        filter: brightness(0.97);
    }

.sq-skill-name[b-k7ybew1cz3] {
    font-weight: 600;
    font-size: 0.9rem;
    color: #2a2a2a;
}

.sq-skill-value[b-k7ybew1cz3] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sq-value-empty[b-k7ybew1cz3] {
    color: #bbb;
    font-size: 1rem;
    font-weight: 300;
}

/* ── Badges ── */
.sq-badge[b-k7ybew1cz3] {
    display: inline-block;
    padding: 4px 13px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.sq-badge-ok[b-k7ybew1cz3] {
    background-color: rgba(0, 155, 60, 0.12);
    color: #0a5e28;
    border: 1px solid rgba(0, 155, 60, 0.28);
}

.sq-badge-warn[b-k7ybew1cz3] {
    background-color: rgba(200, 130, 0, 0.13);
    color: #6b4200;
    border: 1px solid rgba(200, 130, 0, 0.28);
}

.sq-badge-gap[b-k7ybew1cz3] {
    background-color: rgba(195, 0, 0, 0.10);
    color: #7a0000;
    border: 1px solid rgba(195, 0, 0, 0.22);
}

.sq-badge-none[b-k7ybew1cz3] {
    background-color: rgba(140, 140, 140, 0.12);
    color: #666;
    border: 1px solid rgba(140, 140, 140, 0.22);
}

.sq-badge-neutral[b-k7ybew1cz3] {
    background-color: rgba(0, 36, 107, 0.07);
    color: var(--tmk-primary, #00246B);
    border: 1px solid rgba(0, 36, 107, 0.16);
}

.sq-badge-soll[b-k7ybew1cz3] {
    background-color: rgba(0, 36, 107, 0.09);
    color: var(--tmk-primary, #00246B);
    border: 1px solid rgba(0, 36, 107, 0.20);
}

.sq-toggle-all-row[b-k7ybew1cz3] {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.sq-toggle-all-btn[b-k7ybew1cz3] {
    background: transparent;
    border: 1px solid rgba(0, 36, 107, 0.22);
    border-radius: 6px;
    color: var(--tmk-primary, #00246B);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    cursor: pointer;
    transition: background 0.12s ease;
}

    .sq-toggle-all-btn:hover[b-k7ybew1cz3] {
        background: rgba(0, 36, 107, 0.07);
    }
/* /Pages/AdminPanel/KompSkills.razor.rz.scp.css */
*[b-5kcz5fgfya] {
    animation: fadeIn-b-5kcz5fgfya 0.15s ease-in-out;
}

.manage-kompetenzfelder-container[b-5kcz5fgfya] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 16px;
    padding: 20px;
    margin-top: 26px;
    height: 90vh;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    align-self: start;
    overflow: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.manage-kompetenzfelder-button-list-container[b-5kcz5fgfya] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    width: 20%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.manage-kompetenzfelder-list-container[b-5kcz5fgfya] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    height: 100%;
    overflow: auto;
}

    .draggable-item[b-5kcz5fgfya] {
        height: auto;
        background: #bbb;
        margin: 15px;
        align-self: start;
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        text-align: center;
        transition: border-radius 2s ease;
    }

        .draggable-item:hover[b-5kcz5fgfya] {
            background: #aaa;
            cursor: pointer;
        }

        .draggable-item.selected[b-5kcz5fgfya] {
            background: #999;
            border-radius: 8px;
        }

        .draggable-item.drag-over[b-5kcz5fgfya] {
            outline: 3px dashed var(--tmk-primary, #4a90e2);
            border-radius: 8px;
        }

        .draggable-item p[b-5kcz5fgfya] {
            font-size: 1.5rem;
            margin: 10px;
        }

.manage-kompetenzfeld-info-container[b-5kcz5fgfya] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    width: 40%;
    height: 100%;
    overflow: auto;
}

.head[b-5kcz5fgfya] {
    margin: 15px;
    background-color: #bfbfbf;
    border-radius: 8px;
    border: 2px solid #aaa;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
}

    .head .info-row[b-5kcz5fgfya] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .head p[b-5kcz5fgfya] {
        font-size: 1.5rem;
        margin: 10px;
    }

.check-input[b-5kcz5fgfya] {
    accent-color: var(--tmk-primary);
    margin-right: 6px;
    width: 26px;
    height: 26px;
    border: 2px solid #aaa;
}

    .check-input:disabled[b-5kcz5fgfya] {
        accent-color: rgb(0, 0, 0);
        cursor: not-allowed;
    }

.item-actions[b-5kcz5fgfya] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.icon-btn[b-5kcz5fgfya] {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 8px;
}

    .icon-btn:hover[b-5kcz5fgfya] {
        background: rgba(0,0,0,0.06);
    }

    .icon-btn:focus-visible[b-5kcz5fgfya] {
        outline: 2px solid var(--tmk-primary-active);
        outline-offset: 2px;
    }

.icon-btn[b-5kcz5fgfya] {
    width: 40px;
    height: 40px;
}
.icon-pencil[b-5kcz5fgfya] { font-size: 24px; }

    .icon-pencil.editing[b-5kcz5fgfya] {
        color: color-mix(in srgb, var(--tmk-red) 85%, white);
    }

.editing-input[b-5kcz5fgfya] {
    flex: 1;
    background-color: #dfdfdf;
    border: 2px solid #aaa;
}

.item-actons[b-5kcz5fgfya] {
    display: inline-flex;
}

@keyframes fadeIn-b-5kcz5fgfya {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/AdminPanel/Settings.razor.rz.scp.css */
*[b-ritilznf63] {
    animation: fadeIn-b-ritilznf63 0.15s ease-in-out
}

.settings-container[b-ritilznf63] {
    background-color: rgba(150, 150, 150, 0.25);
    border: 2px solid #aaa;
    border-radius: 16px;
    padding: 20px;
    margin-top: 26px;
    height: 88vh;
    max-height: 88vh;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    align-self: start;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
}

.rolepermission-container[b-ritilznf63] {
    max-height: 65vh;
    background: #f2f2f2;
    border: solid 2px #aaa;
    border-radius: 8px;
    display: flex;
    overflow: hidden;
}

.roles-wrapper[b-ritilznf63] {
    width: 25%;
    background: #f2f2f2;
    border: solid 2px #aaa;
    border-radius: 8px;
    margin: 10px 5px 10px 10px;
    padding: 10px;
    overflow-y: auto;
}

.perms-wrapper[b-ritilznf63] {
    width: 100%;
    background: #f2f2f2;
    border: solid 2px #aaa;
    border-radius: 8px;
    margin: 10px 10px 10px 5px;
    padding: 10px;
    overflow-y: auto;
}

.roles-item[b-ritilznf63] {
    background: #f3f3f3;
    border: solid 2px #aaa;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    align-items: center;
}

    .roles-item h6[b-ritilznf63] {
        margin: 0;
        line-height: 1.2;
    }

    .roles-item:hover[b-ritilznf63] {
        background: #e8e8e8;
        border: solid 2px #989;
    }

    .roles-item.selected[b-ritilznf63] {
        background: #c3c3c3;
        border: solid 2px #787;
    }

.perm-item[b-ritilznf63] {
    background: #f3f3f3;
    border: solid 2px #aaa;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

    .perm-item h6[b-ritilznf63] {
        margin: 0;
        line-height: 1.2;
    }

    .perm-item:hover[b-ritilznf63] {
        background: #e8e8e8;
        border: solid 2px #989;
    }

    .perm-item.selected[b-ritilznf63] {
        background: #c3c3c3;
        border: solid 2px #787;
    }

.icon-btn[b-ritilznf63] {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    margin-left: auto;
}

    .icon-btn:hover[b-ritilznf63] {
        background: rgba(0,0,0,0.06);
    }

    .icon-btn:focus-visible[b-ritilznf63] {
        outline: 2px solid var(--tmk-primary-active);
        outline-offset: 2px;
    }

    .icon-btn svg[b-ritilznf63] {
        width: 35px;
        height: 35px;
    }


@keyframes fadeIn-b-ritilznf63 {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/Changelog.razor.rz.scp.css */
*[b-xja0h42hu1] {
    animation: fadeIn-b-xja0h42hu1 0.15s ease-in-out;
}

.changelog-container[b-xja0h42hu1] {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.changelog-header[b-xja0h42hu1] {
    text-align: center;
    margin-bottom: 3rem;
}

    .changelog-header h1[b-xja0h42hu1] {
        font-size: 2.5rem;
        color: var(--tmk-primary);
        margin-bottom: 0.5rem;
    }

.changelog-subtitle[b-xja0h42hu1] {
    color: #666;
    font-size: 1.1rem;
}

.changelog-timeline[b-xja0h42hu1] {
    position: relative;
    padding-left: 2rem;
}

    .changelog-timeline[b-xja0h42hu1]::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(to bottom, var(--tmk-primary) 0%, #e0e0e0 100%);
    }

.changelog-version[b-xja0h42hu1] {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

    .changelog-version[b-xja0h42hu1]::before {
        content: '';
        position: absolute;
        left: -2rem;
        top: 8px;
        width: 15px;
        height: 15px;
        background: var(--tmk-primary);
        border: 3px solid white;
        border-radius: 50%;
        box-shadow: 0 0 0 3px var(--tmk-primary);
    }

.version-badge[b-xja0h42hu1] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.version-number[b-xja0h42hu1] {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--tmk-primary);
}

.version-date[b-xja0h42hu1] {
    color: #666;
    font-size: 0.9rem;
}

.version-content[b-xja0h42hu1] {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.change-category[b-xja0h42hu1] {
    margin-bottom: 1.5rem;
}

    .change-category:last-child[b-xja0h42hu1] {
        margin-bottom: 0;
    }

    .change-category h3[b-xja0h42hu1] {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        color: #333;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

.icon-new[b-xja0h42hu1] {
    color: #4CAF50;
}

.icon-improved[b-xja0h42hu1] {
    color: #2196F3;
}

.icon-fixed[b-xja0h42hu1] {
    color: #FF9800;
}

.change-category ul[b-xja0h42hu1] {
    margin: 0;
    padding-left: 1.5rem;
}

.change-category li[b-xja0h42hu1] {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

    .change-category li:last-child[b-xja0h42hu1] {
        margin-bottom: 0;
    }

.version-badge[b-xja0h42hu1] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.2s;
}

    .version-badge:hover[b-xja0h42hu1] {
        opacity: 0.7;
    }

.collapse-indicator[b-xja0h42hu1] {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--tmk-primary);
    transition: transform 0.2s ease-in-out;
}

    .collapse-indicator.expanded[b-xja0h42hu1] {
        transform: rotate(0deg);
    }

    .collapse-indicator.collapsed[b-xja0h42hu1] {
        transform: rotate(-90deg);
    }

.version-content[b-xja0h42hu1] {
    animation: slideDown-b-xja0h42hu1 0.2s ease-in-out;
}

@keyframes slideDown-b-xja0h42hu1 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn-b-xja0h42hu1 {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/Demo.razor.rz.scp.css */
*[b-b3affgsg5p] {
    animation: fadeIn-b-b3affgsg5p 0.15s ease-in-out;
}

@keyframes fadeIn-b-b3affgsg5p {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/ExternalAssessment/ExternalAssessment.razor.rz.scp.css */
*[b-070bhby0mv] {
    animation: fadeIn-b-070bhby0mv 0.15s ease-in-out;
}

.explanation[b-070bhby0mv] {
    margin-bottom: 12px;
    padding: 12px 16px;
    background-color: #eef2f7;
    border: 1px solid #aac;
    border-radius: 12px;
    font-size: 0.95em;
}

.selection[b-070bhby0mv] {
    margin-top: 1%;
    background-color: #f2f2f2;
    border: 1px solid #aaa;
    border-radius: 16px;
    padding: 16px;
    overflow-y: auto;
}

.legend[b-070bhby0mv] {
    margin-top: 10px;
    padding-top: 8px;
    background-color: #eef2f7;
    border-top: 1px solid #aac;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.9em;
}

.legend-item[b-070bhby0mv] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-color[b-070bhby0mv] {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #aaa;
    flex-shrink: 0;
}

.legend-red[b-070bhby0mv] {
    background-color: #ffe0e0;
}

.legend-normal[b-070bhby0mv] {
    background-color: #f5f5f5;
}

@keyframes fadeIn-b-070bhby0mv {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/ExternalAssessment/ExternalAssessment_SkillView.razor.rz.scp.css */
*[b-q97xb3wdf2] {
    animation: fadeIn-b-q97xb3wdf2 0.15s ease-in-out;
}

.navigation-bar[b-q97xb3wdf2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.nav-left[b-q97xb3wdf2] {
    display: flex;
    gap: 8px;
}

.nav-right[b-q97xb3wdf2] {
    display: flex;
    gap: 8px;
}

@keyframes fadeIn-b-q97xb3wdf2 {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/MySkills.razor.rz.scp.css */

body[b-r8v85qq0kt] {

}
/* /Pages/Skill-Matrix.razor.rz.scp.css */
*[b-wzfxsclu9m] {
    animation: fadeIn-b-wzfxsclu9m 0.15s ease-in-out;
}

.selection-panel[b-wzfxsclu9m] {
    background-color: #f2f2f2;
    border: 1px solid #aaa;
    border-radius: 16px;
    padding: 16px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeIn-b-wzfxsclu9m 0.15s ease-in-out;
}

.container[b-wzfxsclu9m] {
    padding: 20px;
}

h2[b-wzfxsclu9m] {
    margin-top: 0;
}

.filters[b-wzfxsclu9m] {
    display: flex;
    flex-wrap: wrap;
    background: #ddd;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.filter-group[b-wzfxsclu9m] {
    margin-right: 40px;
}

    .filter-group label[b-wzfxsclu9m] {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

.filter-options[b-wzfxsclu9m] {
    max-height: 200px;
    overflow-y: auto;
}

    .filter-options input[type="checkbox"][b-wzfxsclu9m] {
        accent-color: var(--tmk-primary);
        margin-right: 6px;
    }

.skillmatrix[b-wzfxsclu9m] {
    background: #ddd;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: max-content;
    min-width: clamp(900px, 100%, 1600px);
}

.matrix-table[b-wzfxsclu9m] {
    border-collapse: collapse;
    width: 100%;
    min-width: max-content;
    text-align: center;
}

    .matrix-table th[b-wzfxsclu9m], .matrix-table td[b-wzfxsclu9m] {
        padding: 8px;
        border: 1px solid #666;
    }

    .matrix-table th[b-wzfxsclu9m] {
        background: #aaa;
        font-size: 0.9rem;
    }

    .matrix-table thead[b-wzfxsclu9m] {
        position: sticky;
        top: 0;
        z-index: 6;
        background: #aaa;
    }

.dot[b-wzfxsclu9m] {
    width: 12px;
    height: 12px;
    border-radius: 25%;
    display: inline-block;
}

    .dot.red[b-wzfxsclu9m] {
        background-color: rgb(188,86,53);
    }

    .dot.orange[b-wzfxsclu9m] {
        background-color: orange;
    }

    .dot.yellow[b-wzfxsclu9m] {
        background-color: rgb(241,194,61);
    }

    .dot.green[b-wzfxsclu9m] {
        background-color: rgb(127,188,97);
    }

    .dot.cyan[b-wzfxsclu9m] {
        background-color: rgb(43,190,206);
    }

    .dot.blue[b-wzfxsclu9m] {
        background-color: rgb(80,123,187);
    }

    .dot.purple[b-wzfxsclu9m] {
        background-color: purple;
    }

    .dot.gray[b-wzfxsclu9m] {
        background-color: dimgray;
    }

.highskills[b-wzfxsclu9m] {
    background: #ddd;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow-x: auto;
}

.highskills-table[b-wzfxsclu9m] {
    border-collapse: collapse;
    width: 100%;
    min-width: 900px;
    text-align: center;
}

    .highskills-table th[b-wzfxsclu9m], .highskills-table td[b-wzfxsclu9m] {
        padding: 8px;
        border: 1px solid #666;
        vertical-align: top;
    }

.vertical-text[b-wzfxsclu9m] {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    white-space: nowrap;
    font-size: 0.8rem;
}

.feld-name.has-selected[b-wzfxsclu9m] {
    color: #d32f2f;
    font-weight: 600;
}

.feld-option .feld-name[b-wzfxsclu9m] {
    margin-left: 6px;
}

.filter-group[b-wzfxsclu9m] {
    flex: 1 1 320px;
    min-width: 260px;
}

.filter-options label.option[b-wzfxsclu9m] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.2;
}

    .filter-options label.option input[b-wzfxsclu9m] {
        margin-top: 2px;
    }

.filter-options .skill-text[b-wzfxsclu9m] {
    flex: 1 1 auto;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.level-head[b-wzfxsclu9m] {
    width: 70px;
}

.level-cell[b-wzfxsclu9m] {
    width: 40px;
    background: #cfcfcf;
}

.vertical-level[b-wzfxsclu9m] {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.ku-group[b-wzfxsclu9m] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.ku[b-wzfxsclu9m] {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 8px;
    background: #f5f5f5;
    border: 1px solid #bbb;
    font-size: 12px;
    font-weight: 600;
}

:root[b-wzfxsclu9m] {
    --hs-skill-col-width: 180px;
}

.highskills-table.hs[b-wzfxsclu9m] {
    width: max-content;
    min-width: 100%;
    table-layout: auto;
}

.hs .hs-corner[b-wzfxsclu9m] {
    background: #cfcfcf;
    text-align: left;
    position: sticky;
    left: 0;
    z-index: 3;
}

.hs .hs-emp[b-wzfxsclu9m] {
    text-align: center;
    background: #cfcfcf;
    font-weight: 700;
}

.hs .hs-lvl[b-wzfxsclu9m] {
    width: 28px;
    text-align: center;
    background: #dcdcdc;
    padding: 4px 2px;
}

.hs .vertical-level[b-wzfxsclu9m] {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: .3px;
}

.hs .hs-skill[b-wzfxsclu9m] {
    text-align: left;
    background: #e5e5e5;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    font-weight: 600;
    position: sticky;
    left: 0;
    z-index: 2;
}

.hs .hs-cell[b-wzfxsclu9m] {
    text-align: center;
    vertical-align: middle;
}

.hs .group-start[b-wzfxsclu9m] {
    border-left: 2px solid #555 !important;
}

.hs .hs-corner[b-wzfxsclu9m],
.hs .hs-skill[b-wzfxsclu9m] {
    box-shadow: 2px 0 0 rgba(0,0,0,0.08);
}

.remove-btn[b-wzfxsclu9m] {
    width: 100%;
    max-width: 240px;
    height: 36px;
    font-size: 1rem;
    background-color: var(--tmk-primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-items: center;
    white-space: nowrap;
}

    .remove-btn:hover[b-wzfxsclu9m] {
        background-color: var(--tmk-primary-hover);
    }

    .remove-btn:disabled[b-wzfxsclu9m] {
        background-color: rgb(130, 130, 130);
    }

    .remove-btn.selected[b-wzfxsclu9m] {
        background-color: var(--tmk-primary-active);
        color: white;
    }

@media (max-width: 1200px) {
    .filter-group[b-wzfxsclu9m] {
        flex: 1 1 45%;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .filters[b-wzfxsclu9m] {
        padding: 12px;
    }

    .filter-group[b-wzfxsclu9m] {
        flex: 1 1 100%;
        margin-right: 0;
    }

    .filter-options[b-wzfxsclu9m] {
        max-height: 160px;
    }

    .matrix-table th[b-wzfxsclu9m],
    .matrix-table td[b-wzfxsclu9m] {
        padding: 6px;
        font-size: 0.8rem;
    }

    .dot[b-wzfxsclu9m] {
        width: 10px;
        height: 10px;
    }
}

@media (min-width: 1800px) {
    .selection-panel[b-wzfxsclu9m] {
        max-width: 95vw;
        margin-left: auto;
        margin-right: auto;
    }
}

@keyframes fadeIn-b-wzfxsclu9m {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/Skill-Search.razor.rz.scp.css */
.feld-block[b-mso4vsivmu] {
    margin-bottom: 12px;
}

.feld-header[b-mso4vsivmu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 6px 4px;
    background-color: #ddd;
    border-radius: 4px;
}

.arrow[b-mso4vsivmu] {
    font-size: 0.9rem;
}

.skill-list[b-mso4vsivmu] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
    padding-left: 6px;
}

.skill-button[b-mso4vsivmu] {
    background-color: #f5f5f5;
    border: 1px solid #aaa;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .skill-button:hover[b-mso4vsivmu] {
        background-color: #e0e0e0;
    }

    .skill-button.selected[b-mso4vsivmu] {
        background-color: #023eb5;
        color: white;
    }

.einschaetzungen-bar[b-mso4vsivmu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ddd;
    padding: 8px;
    border-radius: 4px;
    margin-top: 1%;
    gap: 12px;
}

.einschaetzungen-left[b-mso4vsivmu] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.einschaetzungen-label[b-mso4vsivmu] {
    font-weight: bold;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.search-button[b-mso4vsivmu] {
    background-color: #023eb5;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    cursor: pointer;
    white-space: nowrap;
}

    .search-button:hover[b-mso4vsivmu] {
        background-color: #0350e0;
    }
