/* =================================================================
   linkaccess.css
   LinkAccess public landing page — LinkSecure huisstijl
   Kleuren: Power Grey #3D3D3B · Bright Orange #F8B133 · Action Blue #302D7D
   Lettertype: Inter (Google Fonts)
   CSS-prefix: la- (geïsoleerd van portaalstijlen)
   ================================================================= */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --la-grey: #3D3D3B;
    --la-grey-light: #5a5a58;
    --la-grey-dark: #2a2a29;
    --la-orange: #F8B133;
    --la-orange-dark: #d4941f;
    --la-blue: #302D7D;
    --la-white: #ffffff;
    --la-off-white: #f7f6f3;
    --la-border: rgba(255, 255, 255, 0.10);
    --la-border-light: rgba(61, 61, 59, 0.12);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--la-off-white);
    color: var(--la-grey);
    line-height: 1.6;
}

/* ── Focus ring (toegankelijkheid) ───────────────────────────── */
:focus-visible {
    outline: 2px solid var(--la-orange);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ── Logomark ─────────────────────────────────────────────────── */
.la-logomark {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: block;
}

/* ── Containers ───────────────────────────────────────────────── */
.la-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.la-container--centered {
    text-align: center;
}

    .la-container--centered .la-section__title,
    .la-container--centered .la-section__desc {
        margin-left: auto;
        margin-right: auto;
    }

/* ── Navigatie ────────────────────────────────────────────────── */
.la-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 60px;
    background: var(--la-grey-dark);
    border-bottom: 1px solid var(--la-border);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.la-nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.la-nav__brand {
    font-size: 15px;
    font-weight: 700;
    color: var(--la-white);
    letter-spacing: 0.02em;
}

.la-nav__accent {
    color: var(--la-orange);
}

.la-nav__by {
    opacity: 0.40;
    font-weight: 400;
}

.la-nav__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.la-nav__user {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    max-width: 260px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.la-nav__user-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    overflow: hidden;
}

.la-nav__user-name {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.90);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.la-nav__user-domain {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.40);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.la-nav__user-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4caf50;
    flex-shrink: 0;
}

.la-btn__ms-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
    vertical-align: middle;
}

/* ── Knoppen ──────────────────────────────────────────────────── */
.la-btn {
    display: inline-block;
    font-family: inherit;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    line-height: 1;
    transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.la-btn--primary {
    background: var(--la-orange);
    color: var(--la-grey-dark);
}

    .la-btn--primary:hover {
        background: var(--la-orange-dark);
        color: var(--la-white);
        transform: translateY(-1px);
    }

.la-btn--ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

    .la-btn--ghost:hover {
        border-color: rgba(255, 255, 255, 0.50);
        color: var(--la-white);
    }

.la-btn--sm {
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 6px;
}

.la-btn--lg {
    font-size: 16px;
    padding: 16px 36px;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.la-hero {
    background: var(--la-grey);
    padding: 140px 2rem 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .la-hero::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        border: 60px solid rgba(248, 177, 51, 0.06);
        pointer-events: none;
    }

    .la-hero::after {
        content: '';
        position: absolute;
        bottom: -120px;
        left: -60px;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        border: 40px solid rgba(48, 45, 125, 0.12);
        pointer-events: none;
    }

.la-eyebrow {
    display: inline-block;
    background: rgba(248, 177, 51, 0.14);
    color: var(--la-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(248, 177, 51, 0.30);
}

.la-hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--la-white);
    line-height: 1.15;
    max-width: 760px;
    margin: 0 auto 1.25rem;
    letter-spacing: -0.02em;
}

    .la-hero__title em {
        font-style: normal;
        color: var(--la-orange);
    }

.la-hero__sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.la-hero__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Trust bar ────────────────────────────────────────────────── */
.la-trust-bar {
    background: var(--la-grey-dark);
    border-top: 1px solid var(--la-border);
    border-bottom: 1px solid var(--la-border);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.la-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.la-trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--la-orange);
    flex-shrink: 0;
}

/* ── Secties ──────────────────────────────────────────────────── */
.la-section {
    padding: 80px 0;
}

.la-section--white {
    background: var(--la-white);
    border-top: 1px solid var(--la-border-light);
    border-bottom: 1px solid var(--la-border-light);
}

.la-section--offwhite {
    background: var(--la-off-white);
}

.la-section--dark {
    background: var(--la-grey);
}

.la-section__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--la-orange-dark);
    margin-bottom: 0.75rem;
    display: block;
}

.la-section__label--light {
    color: rgba(248, 177, 51, 0.75);
}

.la-section__title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--la-grey);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    max-width: 640px;
}

.la-section__title--light {
    color: var(--la-white);
}

.la-section__desc {
    font-size: 1rem;
    color: var(--la-grey-light);
    max-width: 580px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.la-section__desc--light {
    color: rgba(255, 255, 255, 0.55);
}

/* ── Grid ─────────────────────────────────────────────────────── */
.la-grid {
    display: grid;
    gap: 16px;
}

.la-grid--4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.la-grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

/* ── Probleemkaarten ──────────────────────────────────────────── */
.la-problem-card {
    background: var(--la-off-white);
    border: 1px solid var(--la-border-light);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    will-change: transform;
}

    .la-problem-card:hover {
        transform: translateY(-4px);
        border-color: rgba(248, 177, 51, 0.40);
        background: var(--la-white);
    }

        .la-problem-card:hover .la-problem-card__icon {
            background: rgba(248, 177, 51, 0.22);
        }

.la-problem-card__icon {
    width: 40px;
    height: 40px;
    background: rgba(248, 177, 51, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 18px;
    transition: background 0.22s ease;
}

.la-problem-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--la-grey);
    margin-bottom: 0.5rem;
}

.la-problem-card p {
    font-size: 14px;
    color: var(--la-grey-light);
    line-height: 1.65;
}

/* ── Stappen ──────────────────────────────────────────────────── */
.la-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    background: var(--la-white);
    border-top: 1px solid var(--la-border-light);
    border-bottom: 1px solid var(--la-border-light);
    list-style: none;
    padding: 0;
    margin: 0;
}

.la-step {
    padding: 2.5rem 2rem;
    position: relative;
    transition: background 0.22s ease;
}

    .la-step:hover {
        background: rgba(248, 177, 51, 0.04);
    }

        .la-step:hover .la-step__num {
            letter-spacing: 0.14em;
        }

.la-step--divider::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: var(--la-border-light);
}

.la-step__num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.10em;
    color: var(--la-orange);
    margin-bottom: 1rem;
    text-transform: uppercase;
    transition: letter-spacing 0.22s ease;
}

.la-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--la-grey);
    margin-bottom: 0.5rem;
}

.la-step p {
    font-size: 14px;
    color: var(--la-grey-light);
    line-height: 1.65;
}

/* ── Feature-kaarten ──────────────────────────────────────────── */
.la-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
    will-change: transform;
}

    .la-feature-card:hover {
        transform: translateY(-4px);
        background: rgba(255, 255, 255, 0.09);
        border-color: rgba(248, 177, 51, 0.30);
    }

        .la-feature-card:hover .la-feature-card__icon--orange {
            background: rgba(248, 177, 51, 0.25);
        }

        .la-feature-card:hover .la-feature-card__icon--blue {
            background: rgba(48, 45, 125, 0.60);
        }

.la-feature-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 20px;
    transition: background 0.22s ease;
}

.la-feature-card__icon--orange {
    background: rgba(248, 177, 51, 0.15);
}

.la-feature-card__icon--blue {
    background: rgba(48, 45, 125, 0.40);
}

.la-feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--la-white);
    margin-bottom: 0.5rem;
}

.la-feature-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}

/* ── Compliance ───────────────────────────────────────────────── */
.la-compliance-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.la-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
}

.la-checklist__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.la-checklist__check {
    width: 22px;
    height: 22px;
    background: rgba(248, 177, 51, 0.14);
    border: 1px solid var(--la-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--la-orange-dark);
}

    .la-checklist__check svg {
        width: 11px;
        height: 11px;
    }

.la-checklist__item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--la-grey);
    margin-bottom: 2px;
}

.la-checklist__item span {
    font-size: 13px;
    color: var(--la-grey-light);
    line-height: 1.6;
}

.la-callout {
    background: var(--la-grey);
    border-radius: 16px;
    padding: 2rem;
    color: var(--la-white);
    margin-bottom: 16px;
}

.la-callout__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--la-orange);
    margin-bottom: 1rem;
    display: block;
}

.la-callout h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.la-callout p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.la-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.la-tag {
    background: rgba(248, 177, 51, 0.14);
    color: var(--la-orange);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgba(248, 177, 51, 0.30);
    letter-spacing: 0.04em;
}

.la-infobox {
    background: var(--la-off-white);
    border: 1px solid var(--la-border-light);
    border-radius: 12px;
    padding: 1.5rem;
}

.la-infobox__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--la-grey);
    margin-bottom: 0.5rem;
    display: block;
}

.la-infobox p:last-child {
    font-size: 13px;
    color: var(--la-grey-light);
    line-height: 1.65;
}

/* ── Voor-wie-kaarten ─────────────────────────────────────────── */
.la-who-card {
    background: var(--la-white);
    border: 1px solid var(--la-border-light);
    border-top: 3px solid var(--la-orange);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    will-change: transform;
}

    .la-who-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(61, 61, 59, 0.10);
    }

    .la-who-card h3 {
        font-size: 15px;
        font-weight: 700;
        color: var(--la-grey);
        margin-bottom: 0.5rem;
    }

    .la-who-card p {
        font-size: 13px;
        color: var(--la-grey-light);
        line-height: 1.6;
    }

/* ── CTA ──────────────────────────────────────────────────────── */
.la-cta {
    background: var(--la-blue);
    padding: 80px 2rem;
    text-align: center;
}

.la-cta__title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--la-white);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.la-cta__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.la-cta__contacts {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.la-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s ease;
}

    .la-contact-item:hover {
        color: var(--la-white);
    }

.la-divider {
    color: rgba(255, 255, 255, 0.20);
    user-select: none;
}

/* ── Footer ───────────────────────────────────────────────────── */
.la-footer {
    background: var(--la-grey-dark);
    border-top: 1px solid var(--la-border);
    padding: 2rem;
    text-align: center;
}

.la-footer__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
}

    .la-footer__brand .la-logomark {
        width: 24px;
        height: 24px;
    }

.la-footer__name {
    font-size: 13px;
    font-weight: 700;
    color: var(--la-white);
    letter-spacing: 0.04em;
}

.la-footer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.3rem;
}

.la-footer a {
    color: rgba(255, 255, 255, 0.50);
    text-decoration: none;
    transition: color 0.15s ease;
}

    .la-footer a:hover {
        color: var(--la-orange);
    }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .la-compliance-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .la-step--divider::after {
        display: none;
    }

    .la-nav .la-btn--sm {
        display: none;
    }

    .la-nav__user {
        display: none;
    }

    .la-hero {
        padding: 100px 1.5rem 60px;
    }

    .la-section {
        padding: 56px 0;
    }

    .la-container {
        padding: 0 1.25rem;
    }

    .la-trust-bar {
        gap: 1rem;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .la-hero__title {
        font-size: 1.75rem;
    }

    .la-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .la-cta__contacts {
        flex-direction: column;
        gap: 12px;
    }

    .la-divider {
        display: none;
    }
}

/* ── LinkOps productfamilie ───────────────────────────────────── */
.lf-family {
    background: var(--la-grey-dark);
    border-top: 1px solid var(--la-border);
    padding: 1.75rem 0;
}

.lf-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lf-family__intro {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.30);
    text-align: center;
    margin-bottom: 1.25rem;
}

.lf-family__row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 8px;
}

.lf-fam {
    flex: 1 1 160px;
    max-width: 220px;
}

    .lf-fam a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        text-decoration: none;
        padding: 0.9rem 1rem;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.04);
        text-align: center;
        height: 100%;
        transition: background 0.20s ease, border-color 0.20s ease, transform 0.20s ease;
        will-change: transform;
    }

        .lf-fam a:hover {
            background: rgba(255, 255, 255, 0.09);
            border-color: rgba(248, 177, 51, 0.35);
            transform: translateY(-3px);
        }

    .lf-fam strong {
        display: block;
        font-size: 13px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.75);
        letter-spacing: 0.01em;
        transition: color 0.20s ease;
    }

    .lf-fam a:hover strong {
        color: var(--la-white);
    }

    .lf-fam span {
        display: block;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.35);
        line-height: 1.4;
        transition: color 0.20s ease;
    }

    .lf-fam a:hover span {
        color: rgba(255, 255, 255, 0.60);
    }

.lf-fam--active a {
    background: rgba(248, 177, 51, 0.12);
    border-color: rgba(248, 177, 51, 0.40);
}

.lf-fam--active strong {
    color: var(--la-orange);
}

.lf-fam--active span {
    color: rgba(248, 177, 51, 0.60);
}

.lf-fam--active a:hover {
    background: rgba(248, 177, 51, 0.18);
    border-color: rgba(248, 177, 51, 0.65);
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    .lf-family__row {
        gap: 6px;
    }

    .lf-fam {
        flex: 1 1 130px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .la-problem-card,
    .la-problem-card__icon,
    .la-feature-card,
    .la-feature-card__icon,
    .la-who-card,
    .la-step,
    .la-step__num,
    .la-btn,
    .lf-fam a {
        transition: none !important;
        transform: none !important;
    }
}

/* =================================================================
   PrivatePages — lp- prefix
   ================================================================= */

.lp-header {
    background: var(--la-grey);
    padding: 96px 0 2.5rem;
    border-bottom: 1px solid var(--la-border);
}

.lp-header__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.lp-header__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--la-orange);
    margin-bottom: 0.6rem;
}

.lp-header__title {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--la-white);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.lp-header__sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: none; /* GEWIJZIGD: geen breedte-beperking */
    white-space: nowrap; /* GEWIJZIGD: alles op 1 regel */
}

.lp-header__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
}

.lp-badge--ok {
    background: rgba(76, 175, 80, 0.15);
    color: #6fcf71;
    border: 1px solid rgba(76, 175, 80, 0.30);
}

.lp-header__time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.30);
    font-variant-numeric: tabular-nums;
}

.lp-main {
    background: var(--la-off-white);
    padding: 2.5rem 0 4rem;
    min-height: calc(100vh - 200px);
}

.lp-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.lp-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 76px;
}

.lp-card {
    background: var(--la-white);
    border: 1px solid var(--la-border-light);
    border-radius: 14px;
    overflow: hidden;
}

.lp-card--dark {
    background: var(--la-grey);
    border-color: rgba(255, 255, 255, 0.08);
}

.lp-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 1.25rem 0.75rem;
    border-bottom: 1px solid var(--la-border-light);
}

.lp-card--dark .lp-card__header {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.lp-card__icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(248, 177, 51, 0.12);
    color: var(--la-orange-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-card__icon--light {
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.60);
}

.lp-card__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--la-grey);
    margin: 0;
}

.lp-card__title--light {
    color: var(--la-white);
}

.lp-card__body {
    padding: 1rem 1.25rem;
}

.lp-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-info-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--la-border-light);
}

    .lp-info-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .lp-info-row dt {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--la-text-muted, #8a8a87);
    }

    .lp-info-row dd {
        font-size: 13px;
        font-weight: 600;
        color: var(--la-grey);
        margin: 0;
        word-break: break-word;
    }

.lp-info-row__mono {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: var(--la-grey-light) !important;
}

.lp-info-row__break {
    word-break: break-all;
}

.lp-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .lp-links a {
        display: block;
        font-size: 13px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.65);
        text-decoration: none;
        padding: 7px 10px;
        border-radius: 7px;
        transition: background 0.15s ease, color 0.15s ease;
    }

        .lp-links a::after {
            content: ' ↗';
            font-size: 11px;
            opacity: 0.4;
        }

        .lp-links a:hover {
            background: rgba(255, 255, 255, 0.08);
            color: var(--la-white);
        }

.lp-callout {
    background: rgba(248, 177, 51, 0.10);
    border: 1px solid rgba(248, 177, 51, 0.25);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.lp-callout__label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--la-orange-dark);
    margin-bottom: 0.4rem;
}

.lp-callout__text {
    font-size: 12px;
    color: var(--la-grey-light);
    line-height: 1.65;
}

.lp-checklist-header {
    margin-bottom: 1.25rem;
}

.lp-checklist-header__title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--la-grey);
    letter-spacing: -0.01em;
    margin-bottom: 0.4rem;
}

.lp-checklist-header__sub {
    font-size: 14px;
    color: var(--la-grey-light);
    line-height: 1.65;
}

.lp-section-card {
    background: var(--la-white);
    border: 1px solid var(--la-border-light);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.lp-section-card__header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: var(--la-off-white);
    border-bottom: 1px solid var(--la-border-light);
}

.lp-section-num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.10em;
    color: var(--la-orange);
    background: rgba(248, 177, 51, 0.12);
    border: 1px solid rgba(248, 177, 51, 0.25);
    border-radius: 6px;
    padding: 4px 8px;
    flex-shrink: 0;
    margin-top: 2px;
}

.lp-section-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--la-grey);
    margin-bottom: 0.3rem;
}

.lp-section-card__intro {
    font-size: 13px;
    color: var(--la-grey-light);
    line-height: 1.6;
}

.lp-steps {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.lp-step {
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid var(--la-border-light);
    transition: background 0.15s ease;
}

    .lp-step:last-child {
        border-bottom: none;
    }

.lp-step--done {
    background: rgba(76, 175, 80, 0.04);
}

    .lp-step--done .lp-step__action {
        text-decoration: line-through;
        color: var(--la-grey-light);
    }

    .lp-step--done .lp-step__check {
        background: #4caf50;
        border-color: #4caf50;
    }

        .lp-step--done .lp-step__check::after {
            opacity: 1;
        }

.lp-step__label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 0.4rem;
}

.lp-step__checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.lp-step__check {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1.5px solid var(--la-border-light);
    background: var(--la-white);
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease;
    position: relative;
}

    .lp-step__check::after {
        content: '';
        width: 5px;
        height: 9px;
        border-right: 2px solid white;
        border-bottom: 2px solid white;
        transform: rotate(45deg) translateY(-1px);
        opacity: 0;
        transition: opacity 0.15s ease;
    }

.lp-step__label:hover .lp-step__check {
    border-color: var(--la-orange);
}

.lp-step__action {
    font-size: 14px;
    font-weight: 600;
    color: var(--la-grey);
    line-height: 1.4;
    transition: color 0.15s ease, text-decoration 0.15s ease;
}

.lp-step__detail {
    font-size: 13px;
    color: var(--la-grey-light);
    line-height: 1.65;
    padding-left: 32px;
}

@media (max-width: 900px) {
    .lp-layout {
        grid-template-columns: 1fr;
    }

    .lp-sidebar {
        position: static;
    }

    .lp-header__meta {
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .lp-header {
        padding: 90px 0 2rem;
    }

    .lp-section-card__header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .lp-step {
        padding: 0.9rem 1rem;
    }

    .lp-step__detail {
        padding-left: 0;
    }
}

.lp-links__primary {
    background: rgba(248, 177, 51, 0.12) !important;
    border: 1px solid rgba(248, 177, 51, 0.30) !important;
    color: var(--la-orange) !important;
    font-weight: 700 !important;
    border-radius: 8px;
}

    .lp-links__primary::after {
        content: ' →' !important;
        opacity: 0.7;
    }

    .lp-links__primary:hover {
        background: rgba(248, 177, 51, 0.20) !important;
        color: var(--la-orange) !important;
    }

/* =================================================================
   TeamsCheck — tc- prefix
   ================================================================= */

.lp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.40);
    margin-bottom: 0.75rem;
}

    .lp-breadcrumb a {
        color: rgba(255, 255, 255, 0.50);
        text-decoration: none;
        transition: color 0.15s;
    }

        .lp-breadcrumb a:hover {
            color: var(--la-orange);
        }

.tc-tenant-block {
    background: var(--la-white);
    border: 1px solid var(--la-border-light);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.tc-tenant-block__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--la-grey);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.tc-tenant-block__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(248, 177, 51, 0.15);
    color: var(--la-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tc-tenant-block__eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.40);
    margin-bottom: 3px;
}

.tc-tenant-block__title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--la-white);
    letter-spacing: -0.01em;
    margin: 0;
}

.tc-tenant-block__actions {
    display: flex;
    gap: 8px;
    margin-left: auto;
    flex-wrap: wrap;
}

.tc-ext-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}

    .tc-ext-btn:hover {
        background: rgba(255, 255, 255, 0.10);
        color: var(--la-white);
        border-color: rgba(255, 255, 255, 0.25);
    }

.tc-tenant-block__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    padding: 0;
}

.tc-info-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 1.25rem 2rem;
    border-right: 1px solid var(--la-border-light);
    border-bottom: 1px solid var(--la-border-light);
}

    .tc-info-cell:last-child,
    .tc-info-cell--wide:last-child {
        border-right: none;
    }

.tc-info-cell--wide {
    grid-column: span 2;
    border-right: none;
}

.tc-info-cell__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--la-text-muted, #8a8a87);
}

.tc-info-cell__value {
    font-size: 14px;
    font-weight: 600;
    color: var(--la-grey);
    word-break: break-word;
}

.tc-info-cell__value--mono {
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    font-weight: 400;
    color: var(--la-grey-light);
    letter-spacing: 0.02em;
}

.tc-coming-soon {
    background: var(--la-white);
    border: 1px dashed var(--la-border-light);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.tc-coming-soon__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tc-coming-soon__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--la-grey);
    margin-bottom: 0.5rem;
}

.tc-coming-soon__sub {
    font-size: 13px;
    color: var(--la-grey-light);
    line-height: 1.65;
    max-width: 440px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .tc-tenant-block__header {
        padding: 1.25rem;
    }

    .tc-tenant-block__actions {
        margin-left: 0;
        width: 100%;
    }

    .tc-info-cell--wide {
        grid-column: span 1;
    }

    .tc-info-cell {
        padding: 1rem 1.25rem;
        border-right: none;
    }
}

.lp-card--tenant,
.lp-card--tenant-unknown {
    background: var(--la-white);
    border: 1px solid var(--la-border-light);
    border-radius: 14px;
    overflow: hidden;
}

.lp-card--tenant {
    border-left: 3px solid #4caf50;
}

.lp-card--tenant-unknown {
    border-left: 3px solid var(--la-orange);
}

.lp-card__icon--green {
    background: rgba(76, 175, 80, 0.12);
    color: #3d9142;
}

.lp-card__icon--warn {
    background: rgba(248, 177, 51, 0.12);
    color: var(--la-orange-dark);
}

.lp-card__badge {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 100px;
}

.lp-card__badge--ok {
    background: rgba(76, 175, 80, 0.12);
    color: #3d9142;
    border: 1px solid rgba(76, 175, 80, 0.25);
}

.lp-card__badge--warn {
    background: rgba(248, 177, 51, 0.12);
    color: var(--la-orange-dark);
    border: 1px solid rgba(248, 177, 51, 0.30);
}

.lp-card__notice {
    font-size: 13px;
    color: var(--la-grey-light);
    line-height: 1.6;
}

    .lp-card__notice a {
        color: var(--la-orange-dark);
        text-decoration: none;
        font-weight: 600;
    }

        .lp-card__notice a:hover {
            text-decoration: underline;
        }

.lp-connect-banner {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: linear-gradient(135deg, #1e1c4a 0%, #2a2760 100%);
    border: 1px solid rgba(248, 177, 51, 0.30);
    border-left: 4px solid var(--la-orange);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.lp-connect-banner__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(248, 177, 51, 0.15);
    color: var(--la-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-connect-banner__body {
    flex: 1;
    min-width: 0;
}

.lp-connect-banner__title {
    font-size: 15px;
    font-weight: 800;
    color: var(--la-white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.lp-connect-banner__text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

    .lp-connect-banner__text strong {
        color: var(--la-orange);
        font-weight: 600;
    }

.lp-connect-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lp-connect-banner__btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.lp-connect-banner__btn--primary {
    background: var(--la-orange);
    color: var(--la-grey-dark);
}

    .lp-connect-banner__btn--primary:hover {
        background: var(--la-orange-dark);
        color: var(--la-white);
        transform: translateY(-1px);
    }

.lp-connect-banner__btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

    .lp-connect-banner__btn--ghost:hover {
        background: rgba(255, 255, 255, 0.14);
        color: var(--la-white);
    }

@media (max-width: 600px) {
    .lp-connect-banner {
        flex-direction: column;
        gap: 1rem;
    }
}

/* =================================================================
   MSTeams pagina — ms- prefix
   ================================================================= */

.ms-main {
    padding-top: 1.5rem;
}

.ms-container {
    max-width: 100%;
    padding: 0 1.5rem;
}

/* ── Toolbar ──────────────────────────────────────────────────── */
.ms-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: nowrap; /* GEWIJZIGD: altijd 1 regel */
    background: var(--la-white);
    border: 1px solid var(--la-border-light);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.ms-toolbar__filters {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap; /* GEWIJZIGD: filters krimpen, niet wrappen */
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.ms-toolbar__actions {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0; /* knop wordt nooit weggedrukt */
}

.ms-filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 100px; /* iets smaller zodat er ruimte is */
    flex-shrink: 1;
}

.ms-filter-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--la-text-muted, #8a8a87);
}

.ms-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 260px;
}

.ms-search-icon {
    position: absolute;
    left: 10px;
    width: 15px;
    height: 15px;
    color: var(--la-grey-light);
    pointer-events: none;
}

.ms-input {
    width: 100%;
    font-family: inherit;
    font-size: 13px;
    color: var(--la-grey);
    background: var(--la-off-white);
    border: 1px solid var(--la-border-light);
    border-radius: 8px;
    padding: 7px 12px;
    outline: none;
    transition: border-color 0.15s;
}

    .ms-input:focus {
        border-color: var(--la-orange);
    }

.ms-input--search {
    padding-left: 34px;
    padding-right: 34px;
}

.ms-btn-clear {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    color: var(--la-grey-light);
    padding: 2px 4px;
    line-height: 1;
}

    .ms-btn-clear:hover {
        color: var(--la-grey);
    }

.ms-select {
    font-family: inherit;
    font-size: 13px;
    color: var(--la-grey);
    background: var(--la-off-white);
    border: 1px solid var(--la-border-light);
    border-radius: 8px;
    padding: 7px 10px;
    outline: none;
    cursor: pointer;
    transition: border-color 0.15s;
}

    .ms-select:focus {
        border-color: var(--la-orange);
    }

.ms-select--sm {
    padding: 5px 8px;
    font-size: 12px;
}

/* ── Grid ─────────────────────────────────────────────────────── */
.ms-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 1rem;
    align-items: start;
}

/* ── Tabel ────────────────────────────────────────────────────── */
.ms-table-wrap {
    background: var(--la-white);
    border: 1px solid var(--la-border-light);
    border-radius: 14px;
    overflow: hidden;
}

.ms-table-scroll {
    overflow-x: auto;
}

.ms-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

    .ms-table thead tr {
        background: var(--la-grey);
        border-bottom: 2px solid var(--la-orange);
        height: 44px; /* zelfde hoogte als details-header */
    }

    /* GEWIJZIGD: tabelheaders — zelfde gewicht als Details-header */
    .ms-table th {
        padding: 11px 14px;
        font-size: 12px; /* was 11px */
        font-weight: 700;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.80); /* wit op donkere achtergrond */
        text-align: left;
        white-space: nowrap;
        user-select: none;
    }

        .ms-table th.js-sort {
            cursor: pointer;
        }

            .ms-table th.js-sort:hover {
                color: var(--la-white);
            }

    .ms-table td {
        padding: 10px 14px;
        vertical-align: top;
        border-bottom: 1px solid rgba(61,61,59,0.06);
        color: var(--la-grey);
    }

    .ms-table tbody tr {
        cursor: pointer;
        transition: background 0.10s;
    }

        .ms-table tbody tr:last-child td {
            border-bottom: none;
        }

.ms-row--a {
    background: var(--la-white);
}

.ms-row--b {
    background: rgba(61,61,59,0.025);
}

.ms-table tbody tr:hover td {
    background: rgba(248,177,51,0.06) !important;
}

/* ── Team naam ────────────────────────────────────────────────── */
.ms-team-name {
    font-weight: 700;
    color: var(--la-grey);
    font-size: 13px;
}

.ms-team-name--sub {
    font-weight: 400;
    color: var(--la-grey-light);
}

/* ── Badges ───────────────────────────────────────────────────── */
.ms-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 100px;
    white-space: nowrap;
}

.ms-badge--team-type {
    background: rgba(48,45,125,0.12);
    color: var(--la-blue);
}

.ms-badge--private {
    background: rgba(248,177,51,0.15);
    color: var(--la-orange-dark);
}

.ms-badge--default {
    background: rgba(61,61,59,0.10);
    color: var(--la-grey);
}

.ms-badge--channel {
    background: var(--la-grey);
    color: var(--la-white);
}

.ms-badge--team {
    background: rgba(48,45,125,0.12);
    color: var(--la-blue);
}

/* ── Pills ────────────────────────────────────────────────────── */
.ms-pill {
    display: inline-block;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 100px;
    margin: 1px 2px 1px 0;
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.ms-pill--owner {
    background: rgba(48,45,125,0.18);
    color: #302D7D;
    border: 1px solid rgba(48,45,125,0.25);
    font-weight: 600;
}

.ms-pill--member {
    background: rgba(14, 116, 204, 0.10);
    color: #0e6fbb;
    border: 1px solid rgba(14, 116, 204, 0.20);
}

.ms-pill--guest {
    background: rgba(248,177,51,0.12);
    color: var(--la-orange-dark);
}

.ms-pill--more {
    background: rgba(61,61,59,0.06);
    color: var(--la-grey-light);
    font-style: italic;
}

.ms-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

.ms-empty {
    color: var(--la-text-muted, #8a8a87);
    font-size: 13px;
}

.ms-subcap {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--la-text-muted, #8a8a87);
    margin-bottom: 3px;
}

.ms-subcap--mt {
    margin-top: 6px;
}

/* ── Paginering ───────────────────────────────────────────────── */
.ms-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-top: 1px solid var(--la-border-light);
    flex-wrap: wrap;
    gap: 8px;
}

.ms-pagination__info {
    font-size: 13px;
    color: var(--la-grey-light);
}

.ms-pagination__controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ms-pagination__pages {
    font-size: 13px;
    color: var(--la-grey-light);
    white-space: nowrap;
}

.ms-page-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--la-border-light);
    border-radius: 7px;
    background: var(--la-white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--la-grey);
    transition: background 0.15s, border-color 0.15s;
}

    .ms-page-btn:hover {
        background: var(--la-off-white);
        border-color: var(--la-orange);
    }

/* ── Details paneel ───────────────────────────────────────────── */
.ms-details-panel {
    background: var(--la-white);
    border: 1px solid var(--la-border-light);
    border-radius: 14px;
    overflow: hidden;
    position: sticky;
    top: 76px;
}

/* Details-header — gelijk aan tabelheader hoogte */
.ms-details-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px; /* zelfde hoogte als thead tr */
    padding: 0 1.25rem; /* geen verticale padding, hoogte stuurt het */
    border-bottom: 2px solid var(--la-orange);
    background: var(--la-grey);
}

/* GEWIJZIGD: Details-titel — wit op donker, zelfde gewicht als th */
.ms-details-panel__title {
    font-size: 12px; /* zelfde als th */
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.80); /* was grey */
}

.ms-details-empty {
    padding: 2rem 1.25rem;
    font-size: 13px;
    color: var(--la-grey-light);
    text-align: center;
}

.ms-details {
    padding: 1.25rem;
}

.ms-details__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.25rem;
}

.ms-details__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ms-details__row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .ms-details__row dt {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.10em;
        text-transform: uppercase;
        color: var(--la-text-muted, #8a8a87);
    }

    .ms-details__row dd {
        margin: 0;
        font-size: 13px;
        color: var(--la-grey);
        word-break: break-word;
    }

/* ── Utility ──────────────────────────────────────────────────── */
.d-none {
    display: none !important;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .ms-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .ms-grid {
        grid-template-columns: 1fr;
    }

    .ms-details-panel {
        position: static;
    }
}

@media (max-width: 600px) {
    .ms-toolbar {
        padding: 1rem;
    }

    .ms-search-wrap {
        min-width: 0;
        width: 100%;
    }

    .ms-filter-group {
        min-width: 0;
        width: 100%;
    }
}

/* ── Goedkeuren blok ──────────────────────────────────────────── */
.ms-approve-block {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--la-border-light);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ms-required {
    font-weight: 400;
    color: var(--la-grey-light);
    font-style: italic;
    margin-left: 4px;
    text-transform: none;
    letter-spacing: 0;
}

.ms-textarea {
    font-family: inherit;
    font-size: 13px;
    color: var(--la-grey);
    background: var(--la-off-white);
    border: 1px solid var(--la-border-light);
    border-radius: 8px;
    padding: 8px 10px;
    resize: vertical;
    outline: none;
    transition: border-color 0.15s;
    width: 100%;
}

    .ms-textarea:focus {
        border-color: var(--la-orange);
    }

.ms-approve-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ms-approve-btn {
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s, opacity 0.15s;
}

/* GEWIJZIGD: Goedkeuren — voller groen */
.ms-approve-btn--ok {
    background: #16a34a;
    color: var(--la-white);
}

    .ms-approve-btn--ok:hover:not(:disabled) {
        background: #15803d;
        transform: translateY(-1px);
    }

/* GEWIJZIGD: Afgekeurd — vol rood i.p.v. lichtroze */
.ms-approve-btn--nok {
    background: #dc2626;
    color: var(--la-white);
    border: none;
}

    .ms-approve-btn--nok:hover:not(:disabled) {
        background: #b91c1c;
        transform: translateY(-1px);
    }

.ms-approve-btn:disabled {
    opacity: 0.40;
    cursor: not-allowed;
    transform: none;
}

.ms-approve-msg {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
}

.ms-approve-msg--ok {
    background: rgba(76,175,80,0.12);
    color: #3d9142;
}

.ms-approve-msg--err {
    background: rgba(220,53,69,0.10);
    color: #b02a37;
}

/* ── History blok ─────────────────────────────────────────────── */
.ms-history-block {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--la-border-light);
}

.ms-history-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--la-text-muted, #8a8a87);
    margin-bottom: 10px;
}

.ms-history-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ms-history-item {
    background: var(--la-off-white);
    border: 1px solid var(--la-border-light);
    border-radius: 8px;
    padding: 10px 12px;
}

.ms-history-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
}

.ms-history-item__action {
    font-size: 12px;
    font-weight: 700;
}

.ms-history-item__action--ok {
    color: #3d9142;
}

.ms-history-item__action--nok {
    color: #b02a37;
}

.ms-history-item__date {
    font-size: 11px;
    color: var(--la-text-muted, #8a8a87);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.ms-history-item__user {
    font-size: 11px;
    color: var(--la-grey-light);
    margin-bottom: 4px;
}

.ms-history-item__remark {
    font-size: 12px;
    color: var(--la-grey);
    font-style: italic;
    line-height: 1.5;
    border-left: 2px solid var(--la-orange);
    padding-left: 8px;
    margin-top: 4px;
}

/* ── Actie-vereist filter toggle ──────────────────────────────── */
.ms-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid var(--la-border-light);
    background: var(--la-white);
    color: var(--la-grey-light);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

    .ms-filter-toggle:hover {
        border-color: var(--la-orange);
        color: var(--la-grey);
    }

.ms-filter-toggle--active {
    background: rgba(248, 177, 51, 0.12);
    border-color: rgba(248, 177, 51, 0.50);
    color: var(--la-orange-dark);
}

.ms-filter-toggle__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--la-border-light);
    flex-shrink: 0;
    transition: background 0.15s;
}

.ms-filter-toggle--active .ms-filter-toggle__dot {
    background: var(--la-orange);
}

/* ── Status stippen in tabelrijen ─────────────────────────────── */
.ms-actie-dot,
.ms-ok-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    vertical-align: middle;
    margin-right: 4px;
}

.ms-actie-dot {
    background: var(--la-orange);
}

.ms-ok-dot {
    background: #4caf50;
}
