﻿.carryover-badge {
    background-color: #20c997;
    color: #fff;
}

/* Ervaringen */
.experience-card {
    border-left: 4px solid #0d6efd;
    transition: transform 0.15s, box-shadow 0.15s;
}

.experience-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.experience-card__icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: #e7f0ff;
    color: #0d6efd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.experience-role-badge {
    background: #e0f7ee;
    color: #146c43;
    font-weight: 500;
}

.experience-empty {
    text-align: center;
    padding: 3rem 1rem;
    background: #f8fafc;
    border: 1px dashed #c4cfdb;
    border-radius: 0.75rem;
}

.experience-empty__icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #e7f0ff;
    color: #0d6efd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.required-star {
    color: #dc3545;
}

.carryover-icon {
    color: #20c997;
}


.switchboard-tile--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Plan-naam als primaire link naar de doelen. */
.roadmap-name-link {
    color: #0063d3;
    text-decoration: none;
}

.roadmap-name-link:hover {
    text-decoration: underline;
}

/* Klikbare voortgangsbalk (naar je doelen) — pointer + subtiele hover op de balk. */
.roadmap-progress-link {
    cursor: pointer;
}

/* De tekst "x / y behaald" oogt als link, met exact hetzelfde gedrag als de naam-kolom:
   blauw, en pas onderstreept bij hover. */
.roadmap-progress-link .progress-info span:first-child {
    color: #0063d3;
    text-decoration: none;
}

.roadmap-progress-link:hover .progress-info span:first-child {
    text-decoration: underline;
}

.roadmap-progress-link .progress-bar__value {
    transition: filter 0.15s ease-in-out;
}

.roadmap-progress-link:hover .progress-bar__value {
    filter: brightness(1.08);
}

/* Impersonation/support-banner — vaste, volledige balk helemaal bovenaan tijdens "login als".
   De banner zelf is fixed op top:0; de bestaande (sticky/fixed) navigatie wordt met :has() omlaag
   geschoven zodat niets overlapt. */
.impersonation-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    border-radius: 0;
}

body:has(.impersonation-banner) {
    padding-top: var(--impersonation-banner-height, 48px);
}

body:has(.impersonation-banner) .mype-navbar {
    top: var(--impersonation-banner-height, 48px);
}

body:has(.impersonation-banner) .app__header {
    top: var(--impersonation-banner-height, 48px);
}

body:has(.impersonation-banner) .header__wrapper {
    top: calc(var(--mype-navBarHeight) + var(--impersonation-banner-height, 48px));
}

/* Top-right user-dropdown: Bootstrap koppelt .dropdown-menu-end aan
   [data-bs-popper] dat alleen door de Bootstrap-JS wordt gezet. Onze
   DropdownMenu gebruikt een handmatige Blazor-toggle, geen Popper, dus
   die selector matcht nooit. Explicit override forceert right-align. */
.dropdown-menu.dropdown-menu-end {
    right: 0;
    left: auto;
}

/* Objective step-indicator */
.objective-step {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.objective-step__item {
    flex: 1;
}

.objective-step__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    background: #fff;
    color: #495057;
    text-decoration: none;
    transition: background-color 0.15s, border-color 0.15s;
}

.objective-step__link:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

.objective-step__marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #e9ecef;
    color: #495057;
    font-weight: 600;
}

.objective-step__item--active .objective-step__link {
    border-color: #0d6efd;
    color: #0d6efd;
    background: #eaf3ff;
}

.objective-step__item--active .objective-step__marker {
    background: #0d6efd;
    color: #fff;
}

.objective-step__item--completed .objective-step__link {
    border-color: #20c997;
    color: #146c43;
}

.objective-step__item--completed .objective-step__marker {
    background: #20c997;
    color: #fff;
}

.objective-step__label {
    font-weight: 500;
}

/* Vergrendelde stap: gedempt, niet klikbaar, geen hover. */
.objective-step__link--locked {
    color: #adb5bd;
    background: #f8f9fa;
    border-color: #e9ecef;
    cursor: not-allowed;
}

.objective-step__item--locked .objective-step__link--locked:hover {
    background: #f8f9fa;
    border-color: #e9ecef;
}

.objective-step__item--locked .objective-step__marker {
    background: #e9ecef;
    color: #adb5bd;
}

/* Chevron tussen de stappen: toont de volgorde, telt niet als flex-stap. */
.objective-step__sep {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    color: #ced4da;
}

/* Save/volgende-knop client-side gedimd zolang het verplichte tekstveld leeg is (placeholder zichtbaar).
   Reageert direct op typen, zonder serververkeer per toetsaanslag. Herbruikbaar in cards en modals. */
.required-gate:has(.required-gate__input:placeholder-shown) .required-gate__btn {
    opacity: 0.65;
    pointer-events: none;
}

/* === Switchboard === */
.switchboard-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    border-radius: 1rem;
    padding: 2rem 2rem 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e9eef5;
}

.switchboard-hero h1 {
    margin-bottom: 0.5rem;
}

.switchboard-hero p {
    color: #5b6b7a;
    margin-bottom: 0;
    max-width: 56rem;
}

.switchboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.switchboard-tile {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid #e9eef5;
    border-radius: 0.875rem;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
    color: #1f2937;
    text-decoration: none;
    text-align: left;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    overflow: hidden;
    min-height: 110px;
}

button.switchboard-tile {
    width: 100%;
    cursor: pointer;
    font: inherit;
}

.switchboard-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    border-color: #d6dde7;
    color: #1f2937;
    text-decoration: none;
}

.switchboard-tile__accent {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    border-top-left-radius: 0.875rem;
    border-bottom-left-radius: 0.875rem;
}

.switchboard-tile--primary .switchboard-tile__accent { background: #0d6efd; }
.switchboard-tile--teal    .switchboard-tile__accent { background: #20c997; }
.switchboard-tile--info    .switchboard-tile__accent { background: #3a8fb7; }
.switchboard-tile--warning .switchboard-tile__accent { background: #e87722; }
.switchboard-tile--purple  .switchboard-tile__accent { background: #6f42c1; }

.switchboard-tile__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.switchboard-tile--primary .switchboard-tile__icon { background: #e7f0ff; color: #0d6efd; }
.switchboard-tile--teal    .switchboard-tile__icon { background: #e0f7ee; color: #146c43; }
.switchboard-tile--info    .switchboard-tile__icon { background: #e2f0f7; color: #2e7390; }
.switchboard-tile--warning .switchboard-tile__icon { background: #fdeede; color: #b95612; }
.switchboard-tile--purple  .switchboard-tile__icon { background: #efe8fa; color: #6f42c1; }

.switchboard-tile__body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.switchboard-tile__title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.switchboard-tile__description {
    font-size: 0.85rem;
    color: #5b6b7a;
    line-height: 1.4;
}

.switchboard-tile__extras {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

/* === Zelfscan welkom-pagina === */
.scan-welcome-page {
    background: linear-gradient(180deg, #eaf3ff 0%, #f8fafc 100%);
    min-height: calc(100vh - 4rem);
}

.scan-welcome-hero {
    padding: 2rem 1rem 1rem;
}

.scan-welcome-hero__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: #fff;
    color: #0d6efd;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 32px rgba(13, 110, 253, 0.18);
}

/* Voltooid-banner bovenaan de zelfscan-welkomstpagina. */
.scan-welcome-done {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    background: #e9f9f1;
    border: 1px solid #20c997;
}

.scan-welcome-done__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #20c997;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 6px 18px rgba(32, 201, 151, 0.25);
}

/* Voltooid-vinkje op een zelfscan stap-kaart. */
.scan-step {
    position: relative;
}

.scan-step__check {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #20c997;
    color: #fff;
    font-size: 0.9rem;
    box-shadow: 0 2px 6px rgba(32, 201, 151, 0.35);
    z-index: 1;
}

.scan-step--done {
    border-color: #20c997;
}

/* Voorkom overlap met groene "voltooid"-vinkje: bij done-state cijfer-badge verbergen. */
.scan-step--done .scan-step__badge {
    display: none;
}

.scan-welcome-hero h1 {
    color: #1f2937;
}

.scan-welcome-hero .lead {
    color: #475569;
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
}

.scan-welcome-meta {
    color: #5b6b7a;
    font-size: 0.9rem;
}

.scan-step {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem 1.25rem 1.25rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    height: 100%;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    overflow: hidden;
}

.scan-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.scan-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.scan-step--primary::before { background: #0d6efd; }
.scan-step--teal::before    { background: #20c997; }
.scan-step--info::before    { background: #3a8fb7; }
.scan-step--warning::before { background: #e87722; }

.scan-step__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.scan-step__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.scan-step--primary .scan-step__icon { background: #e7f0ff; color: #0d6efd; }
.scan-step--teal .scan-step__icon    { background: #e0f7ee; color: #146c43; }
.scan-step--info .scan-step__icon    { background: #e2f0f7; color: #2e7390; }
.scan-step--warning .scan-step__icon { background: #fdeede; color: #b95612; }

.scan-step h5 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.scan-step p {
    color: #5b6b7a;
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Begrippen-uitleg op de eerste zelfscan-wizardstap (Functie kiezen). */
.scan-terms {
    background: #fff;
    border: 1px solid #e9edf2;
    border-radius: 1rem;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.scan-terms__header h5 {
    color: #1f2937;
    font-weight: 600;
}

.scan-terms__header p {
    color: #5b6b7a;
    font-size: 0.9rem;
}

.scan-term {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.9rem 0;
    border-top: 1px solid #eef2f6;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.55;
}

.scan-terms__header + .scan-term {
    margin-top: 1rem;
}

.scan-term:last-child {
    padding-bottom: 0;
}

.scan-term strong {
    color: #1f2937;
}

.scan-term__icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-top: 0.1rem;
}

.scan-term__icon--primary { background: #e7f0ff; color: #0d6efd; }
.scan-term__icon--teal    { background: #e0f7ee; color: #146c43; }
.scan-term__icon--info    { background: #e2f0f7; color: #2e7390; }
.scan-term__icon--warning { background: #fdeede; color: #b95612; }

.scan-term__example {
    margin-top: 0.35rem;
    color: #5b6b7a;
    font-size: 0.85rem;
    font-style: italic;
}

.scan-term__example span {
    display: inline-block;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 0.35rem;
    padding: 0.05rem 0.45rem;
    margin-right: 0.4rem;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.scan-welcome-tip {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    border-left: 4px solid #ffc107;
    max-width: 56rem;
    margin: 0 auto;
}

.scan-welcome-tip__icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #fff7e0;
    color: #b45309;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.scan-welcome-tip strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.scan-welcome-tip p {
    color: #5b6b7a;
    font-size: 0.9rem;
}

.scan-welcome-cta {
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.scan-welcome-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(13, 110, 253, 0.4);
}

/* Portfolio skill card — klikbaar */
.portfolio-skill-card {
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.portfolio-skill-card:hover,
.portfolio-skill-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
    outline: none;
}

.admintree-company {
    color: #28856D;
}

.admintree-overwrite {
    color: #2196F3;
}

.admintree-enddate {
    color: #7F0037;
}

.admintree-hidden {
    filter: opacity(0.50);
}

.admintree-enddate-row {
    background-color: #fcf1f9 !important;
}

.admintree-lock {
    color: #888;
    font-size: 0.9em;
    vertical-align: middle;
}


.comments {
    display: flex;
    flex-flow: column nowrap;
    margin: 1.5rem -1.5rem 0 -2rem;
    padding: 1rem 1.5rem 1rem 2rem;
    background: #f7f7f7;
}

.comment *[style*="background-color"],
.comment *[style*="background"] {
    background-color: transparent !important;
}

.comment {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 1rem 0.5rem;
    border: 0.0625rem solid #d6d5d5;
    border-radius: 0.25rem;
    background: #ffffff;
}

.comment--incomming {
    margin-right: 8rem;
}

.comment--outgoing {
    margin-left: 8rem;
    border-color: #e5e5f1;
    background-color: #e5e5f1;
}

.comment .time {
    color: #666666;
    font-size: small;
}

.commentadd {
    margin-top: 1rem;
    margin-bottom: 1rem;
}


.header__currentyear {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    height: 1rem;
    color: #000000
}

.accordeon-item-link 
{
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
}

.active-learningcard {
    background-color: lavender;
}




/*
@media (min-width: 576px) and (max-width: 1199.98px) {
    .header__controls {
        flex-flow: row-reverse nowrap;
    }
}

@media (min-width: 1200px) {
    .header__controls {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, white 100%);
        height: auto;
        padding: 1.5rem 1.5rem 1rem;
    }
}

/* === Report cards (dashboard landing) === */
.report-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.report-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e5e9f0;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
    color: #1f2937;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    position: relative;
    overflow: hidden;
}

.report-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
}

.report-card--primary::before { background: linear-gradient(90deg, #0d6efd, #4d8eff); }
.report-card--teal::before    { background: linear-gradient(90deg, #20c997, #5cd6b3); }
.report-card--info::before    { background: linear-gradient(90deg, #3a8fb7, #6db1d3); }
.report-card--warning::before { background: linear-gradient(90deg, #e87722, #f29b54); }
.report-card--purple::before  { background: linear-gradient(90deg, #6f42c1, #9979d1); }

.report-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
    border-color: #ced6e2;
    color: #1f2937;
    text-decoration: none;
}

.report-card__header {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
}

.report-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.report-card--primary .report-card__icon { background: #e7f0ff; color: #0d6efd; }
.report-card--teal .report-card__icon    { background: #e0f7ee; color: #146c43; }
.report-card--info .report-card__icon    { background: #e2f0f7; color: #2e7390; }
.report-card--warning .report-card__icon { background: #fdeede; color: #b95612; }
.report-card--purple .report-card__icon  { background: #efe8fa; color: #6f42c1; }

.report-card__title-wrap {
    min-width: 0;
    flex: 1;
}

.report-card__chip {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #eef2f7;
    color: #5b6b7a;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.report-card__title {
    font-size: 1.15rem;
    margin: 0;
    color: #1f2937;
}

.report-card__primary {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.report-card__primary-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.report-card--primary .report-card__primary-number { color: #0d6efd; }
.report-card--teal .report-card__primary-number    { color: #146c43; }
.report-card--info .report-card__primary-number    { color: #2e7390; }
.report-card--warning .report-card__primary-number { color: #b95612; }
.report-card--purple .report-card__primary-number  { color: #6f42c1; }

.report-card__primary-label {
    font-size: 0.875rem;
    color: #5b6b7a;
}

.report-card__secondary {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
}

.report-card__stat {
    display: flex;
    flex-direction: column;
}

.report-card__stat-value {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.1;
}

.report-card__stat-label {
    font-size: 0.75rem;
    color: #5b6b7a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.report-card__description {
    color: #5b6b7a;
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
}

.report-card__footer {
    margin-top: auto;
    border-top: 1px solid #eef2f7;
    padding-top: 0.75rem;
}

.report-card__cta {
    color: #0d6efd;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* === Job hierarchy (dashboard) === */
.job-hierarchy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.job-hierarchy__row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    background: #fff;
    border: 1px solid #e9eef5;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.job-hierarchy__row:hover {
    background: #f8fafc;
    border-color: #d1dae6;
}

.job-hierarchy__toggle,
.job-hierarchy__row-btn {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    color: inherit;
    font: inherit;
    text-align: left;
}

.job-hierarchy__row-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.2rem 0.4rem;
    border-radius: 0.4rem;
    color: #1f2937;
    transition: background 0.15s ease;
}

.job-hierarchy__row-btn:hover {
    background: #efe8fa;
}

.job-hierarchy__cta {
    margin-left: auto;
    font-size: 0.75rem;
    color: #6f42c1;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0;
    transition: opacity 0.15s ease;
    white-space: nowrap;
}

.job-hierarchy__row-btn:hover .job-hierarchy__cta,
.job-hierarchy__row--active .job-hierarchy__cta {
    opacity: 1;
}

.job-hierarchy__chevron {
    width: 1rem;
    text-align: center;
    color: #5b6b7a;
    transition: transform 0.15s ease;
    display: inline-block;
}

.job-hierarchy__chevron--open { transform: rotate(90deg); }
.job-hierarchy__chevron--placeholder { visibility: hidden; }

.job-hierarchy__icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.job-hierarchy__row--company .job-hierarchy__icon  { background: #eef2f7; color: #1f2937; }
.job-hierarchy__row--function .job-hierarchy__icon { background: #e7f0ff; color: #0d6efd; }
.job-hierarchy__row--role .job-hierarchy__icon     { background: #e0f7ee; color: #146c43; }
.job-hierarchy__row--task .job-hierarchy__icon     { background: #fdeede; color: #b95612; }
.job-hierarchy__row--skill .job-hierarchy__icon    { background: #efe8fa; color: #6f42c1; }

.job-hierarchy__label { font-weight: 500; flex: 1; }

.job-hierarchy__row--company .job-hierarchy__label  { font-weight: 700; font-size: 1.05rem; }
.job-hierarchy__row--function .job-hierarchy__label { font-weight: 600; }

.job-hierarchy__count {
    font-size: 0.75rem;
    color: #5b6b7a;
    background: #eef2f7;
    padding: 0.1rem 0.55rem;
    border-radius: 999px;
}

.job-hierarchy__children {
    margin-left: 1.5rem;
    margin-top: 0.4rem;
    padding-left: 0.75rem;
    border-left: 2px solid #e9eef5;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.job-hierarchy__loading {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #5b6b7a;
    font-style: italic;
}

.job-hierarchy__row--clickable {
    border-left: 4px solid transparent;
    padding-left: calc(0.875rem - 4px);
    transition: border-color 0.15s ease, background 0.15s ease;
}

.job-hierarchy__row--clickable:hover {
    border-left-color: #6f42c1;
}

.job-hierarchy__row--active {
    border-left-color: #6f42c1 !important;
    background: #faf7ff;
}

.job-hierarchy__row--match {
    background: #fff8e1;
    border-left-color: #e87722 !important;
}

.job-hierarchy__row--match .job-hierarchy__label {
    font-weight: 700;
}

.skill-persons-panel {
    background: #f8fafc;
    border: 1px solid #e9eef5;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

/* Actor-voortgangsbalk op de homepage (Zelfscan → Ontwikkelplan → Mijn doelen → Ervaringen).
   Visueel afgestemd op de switchboard-kaartjes: zelfde rand, radius, schaduw, hover-lift en
   icoon-cirkels met accent-tint. */
.actor-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.flow-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1 1 0;
    min-width: 220px;
    min-height: 110px;
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid #e9eef5;
    border-radius: 0.875rem;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
    color: #1f2937;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

a.flow-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    border-color: #d6dde7;
    color: #1f2937;
    text-decoration: none;
}

.flow-step__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.flow-step--primary .flow-step__icon { background: #e7f0ff; color: #0d6efd; }
.flow-step--teal    .flow-step__icon { background: #e0f7ee; color: #146c43; }
.flow-step--info    .flow-step__icon { background: #e2f0f7; color: #2e7390; }
.flow-step--purple  .flow-step__icon { background: #efe8fa; color: #6f42c1; }

.flow-step__body {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.flow-step__title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.flow-step__description {
    font-size: 0.85rem;
    color: #5b6b7a;
    line-height: 1.4;
    margin-top: 0.15rem;
}

.flow-step__status {
    font-size: 0.78rem;
    color: #5b6b7a;
    margin-top: 0.35rem;
}

/* Voltooid: groene rand + groene status + check-badge op de icoon-cirkel. */
.flow-step--done {
    border-color: #bfe6d6;
}

.flow-step--done .flow-step__status {
    color: #146c43;
    font-weight: 600;
}

.flow-step__check,
.flow-step__badge {
    position: absolute;
    right: -3px;
    bottom: -3px;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    border: 2px solid #fff;
}

.flow-step__check {
    background: #20c997;
    color: #fff;
}

.flow-step__badge--lock {
    background: #adb5bd;
    color: #fff;
}

/* Actieve (volgende) stap: primaire ring. */
.flow-step--active {
    border-color: #0d6efd;
    box-shadow: 0 0 0 1px #0d6efd inset, 0 1px 3px rgba(15, 23, 42, 0.05);
}

.flow-step--active .flow-step__status {
    color: #0d6efd;
    font-weight: 600;
}

/* Nog niet beschikbaar. */
.flow-step--locked {
    opacity: 0.65;
    cursor: not-allowed;
    background: #f8fafc;
}

.flow-step__sep {
    display: flex;
    align-items: center;
    color: #cbd5e1;
    flex: 0 0 auto;
}

/* Keuze-popup (ItemPickerModal): hele rij klikbaar, geen link-opmaak. */
.item-picker tbody tr {
    cursor: pointer;
}

.item-picker tbody tr:hover {
    background: #f1f5f9;
}

/* Kop boven elk pad op de homepage ("Jouw stappen" / "Meer"). */
.switchboard-section-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #344256;
    margin: 0 0 0.75rem;
}

.switchboard-section-title + .actor-flow {
    margin-top: 0;
}

@media (max-width: 768px) {
    .actor-flow {
        flex-direction: column;
    }

    .flow-step__sep {
        transform: rotate(90deg);
        align-self: center;
    }
}

/* Focuskeuze-kaarten vóór de ontwikkelplan-wizard (huidige functie vs. ambitie). */
.roadmap-focus-card {
    display: block;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.roadmap-focus-card:hover {
    transform: translateY(-4px);
    border-color: #0d6efd;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.roadmap-focus-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: #e7f0ff;
    color: #0d6efd;
}

/* Naam/bedrijf rechtsboven in de navbar: max-width vergroten zodat ~24 tekens passen
   (overschrijft index.css .text-truncate max-width: 150px ≈ 14 tekens). De C#-limiet
   in Navbar.razor.cs is al 24 (naam) / 30 (bedrijf). */
.navbar .navigation-items .nav-link__text .text-truncate {
    max-width: 240px;
}

}*/