/* =========================================================
   Radicale Middenpartij — Stylesheet
   Kleuren uit het officiële stijlpalet:
     --rmp-navy   #0E3253   (Ship Navy)
     --rmp-teal   #006075   (Fire Teal)
     --rmp-orange #E76F3C   (Warm Accent)
     --rmp-deep   #1B2F4A   (Sploosh diep navy)
     --rmp-cream  #EEE8DA   (Driplava cream)
   Fonts: Poppins (kop), Inter (body)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --rmp-navy: #0E3253;
    --rmp-teal: #006075;
    --rmp-orange: #E76F3C;
    --rmp-deep: #1B2F4A;
    --rmp-cream: #EEE8DA;
    --rmp-white: #FFFFFF;
    --rmp-ink: #0B1F33;
    --rmp-grey: #5A6B7B;
    --rmp-soft: #F5F2EA;
    --rmp-line: #E2DACA;

    --shadow-sm: 0 2px 8px rgba(14,50,83,.08);
    --shadow-md: 0 10px 30px rgba(14,50,83,.14);
    --shadow-lg: 0 24px 60px rgba(14,50,83,.20);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --container: 1200px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--rmp-white);
    color: var(--rmp-ink);
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--rmp-teal);
    text-decoration: none;
}

a:hover {
    color: var(--rmp-orange);
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    color: var(--rmp-navy);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0 0 .6em;
    font-weight: 800;
}

h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.9rem, 3.6vw, 3rem);
}

h3 {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
}

h1:focus, h2:focus, h3:focus {
    outline: none;
}

p {
    margin: 0 0 1em;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--rmp-orange);
    margin-bottom: 1rem;
}

.text-accent {
    color: var(--rmp-orange);
}

.text-teal {
    color: var(--rmp-teal);
}

.text-navy {
    color: var(--rmp-navy);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 1.5rem;
    border-radius: var(--radius-pill);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .98rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    text-decoration: none;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--rmp-navy);
    color: #fff;
}

.btn-primary:hover {
    background: var(--rmp-deep);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--rmp-orange);
    color: #fff;
    box-shadow: 0 8px 24px rgba(231,111,60,.35);
}

.btn-accent:hover {
    background: #d85a25;
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--rmp-navy);
    border-color: var(--rmp-navy);
}

.btn-ghost:hover {
    background: var(--rmp-navy);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--rmp-navy);
}

.btn-white:hover {
    background: var(--rmp-cream);
    color: var(--rmp-navy);
}

.btn-lg {
    padding: 1.1rem 1.9rem;
    font-size: 1.05rem;
}

/* ---------- Header / nav ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.94);
    backdrop-filter: saturate(160%) blur(12px);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid var(--rmp-line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-brand img {
    height: 56px;
    width: auto;
}

.nav-brand .brand-text {
    display: none;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
    align-items: center;
}

.nav-list a {
    display: inline-block;
    color: var(--rmp-navy);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .98rem;
    padding: .55rem .95rem;
    border-radius: var(--radius-pill);
    transition: background .15s, color .15s;
}

.nav-list a:hover {
    background: var(--rmp-cream);
    color: var(--rmp-navy);
}

.nav-list a.active {
    background: var(--rmp-navy);
    color: #fff;
}

.nav-cta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--rmp-navy);
    margin: 5px 0;
    border-radius: 3px;
}

@media (max-width: 940px) {
    .nav-list, .nav-cta .btn-ghost { display: none; }
    .nav-toggle { display: inline-block; }
    .nav.open .nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--rmp-line);
        padding: 16px 24px 24px;
        box-shadow: var(--shadow-md);
    }
    .nav.open .nav-list a { padding: .9rem 1rem; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, var(--rmp-soft) 100%);
    padding: 80px 0 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
    align-items: center;
}

.hero h1 .stroke {
    color: var(--rmp-orange);
}

.hero h1 .underline {
    background: linear-gradient(transparent 64%, rgba(231,111,60,.35) 64%);
    padding: 0 .15em;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--rmp-grey);
    max-width: 560px;
    margin-bottom: 1.6rem;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    background: #fff;
    border: 1px solid var(--rmp-line);
    color: var(--rmp-navy);
    font-weight: 500;
    font-size: .88rem;
}

.tag .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rmp-teal);
}

.hero-art {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 75% 25%, rgba(231,111,60,.18), transparent 45%),
        linear-gradient(160deg, var(--rmp-navy) 0%, var(--rmp-deep) 60%, var(--rmp-teal) 100%);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-art .arches {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background:
        radial-gradient(circle at 20% 100%, var(--rmp-orange) 0 38%, transparent 39%),
        radial-gradient(circle at 50% 100%, var(--rmp-cream) 0 30%, transparent 31%),
        radial-gradient(circle at 80% 100%, var(--rmp-teal) 0 38%, transparent 39%);
    opacity: .9;
}

.hero-art .quote {
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1.15;
}

.hero-art .quote small {
    display: block;
    margin-top: 14px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--rmp-cream);
    opacity: .85;
}

.hero-bridge {
    margin-top: 64px;
    height: 110px;
    background:
        radial-gradient(circle at 18% 100%, var(--rmp-orange) 0 70px, transparent 72px),
        radial-gradient(circle at 50% 100%, var(--rmp-cream) 0 70px, transparent 72px),
        radial-gradient(circle at 82% 100%, var(--rmp-teal) 0 70px, transparent 72px);
    border-top: 4px solid var(--rmp-navy);
}

@media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero-art { aspect-ratio: 16/12; }
}

/* ---------- Sections ---------- */
section {
    padding: 90px 0;
}

section.tight {
    padding: 60px 0;
}

section.cream {
    background: var(--rmp-soft);
}

section.navy {
    background: var(--rmp-navy);
    color: #fff;
}

section.navy h1,
section.navy h2,
section.navy h3 {
    color: #fff;
}

section.navy .eyebrow {
    color: var(--rmp-cream);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-head.left {
    text-align: left;
    margin-left: 0;
}

.section-head p {
    font-size: 1.1rem;
    color: var(--rmp-grey);
}

section.navy .section-head p {
    color: rgba(255,255,255,.78);
}

/* ---------- Pillars (3 columns) ---------- */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.pillar {
    background: #fff;
    border: 1px solid var(--rmp-line);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.pillar:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.pillar .icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
}

.pillar.p1 .icon { background: var(--rmp-navy); }
.pillar.p2 .icon { background: var(--rmp-teal); }
.pillar.p3 .icon { background: var(--rmp-orange); }

.pillar h3 { margin-bottom: 8px; }

.pillar p { color: var(--rmp-grey); margin: 0; }

@media (max-width: 800px) {
    .pillars { grid-template-columns: 1fr; }
}

/* ---------- Theme cards (Standpunten) ---------- */
.themes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.theme-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--rmp-line);
    border-radius: var(--radius-md);
    padding: 26px 24px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

.theme-card::after {
    content: "";
    position: absolute;
    inset: auto -30px -30px auto;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--rmp-cream);
    opacity: .8;
    z-index: 0;
}

.theme-card > * { position: relative; z-index: 1; }

.theme-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.theme-card h3 {
    font-size: 1.15rem;
    margin-bottom: .35em;
}

.theme-card p {
    font-size: .96rem;
    color: var(--rmp-grey);
    margin-bottom: 12px;
}

.theme-card .stance {
    display: inline-flex;
    gap: 8px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--rmp-teal);
    letter-spacing: .12em;
    text-transform: uppercase;
}

@media (max-width: 1100px) { .themes { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .themes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .themes { grid-template-columns: 1fr; } }

/* ---------- Quote strip ---------- */
.quote-strip {
    text-align: center;
    background:
        linear-gradient(180deg, rgba(0,96,117,.07) 0%, rgba(231,111,60,.05) 100%);
    padding: 110px 0;
}

.quote-strip blockquote {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3.6vw, 3rem);
    color: var(--rmp-navy);
    margin: 0 auto;
    max-width: 900px;
    line-height: 1.15;
}

.quote-strip blockquote em {
    font-style: normal;
    color: var(--rmp-orange);
}

.quote-strip .who {
    margin-top: 24px;
    color: var(--rmp-grey);
    font-weight: 500;
}

/* ---------- CTA banner ---------- */
.cta-banner {
    background:
        radial-gradient(circle at 100% 0%, rgba(231,111,60,.35) 0 35%, transparent 60%),
        linear-gradient(120deg, var(--rmp-navy), var(--rmp-deep));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 28px;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
    color: #fff;
    margin: 0;
}

.cta-banner p {
    color: rgba(255,255,255,.78);
    margin: 8px 0 0;
}

@media (max-width: 760px) {
    .cta-banner { grid-template-columns: 1fr; padding: 40px 28px; }
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--rmp-deep);
    color: #cbd6e2;
    padding: 70px 0 28px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.site-footer h4 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.site-footer a {
    color: #cbd6e2;
    display: block;
    padding: 4px 0;
}

.site-footer a:hover {
    color: var(--rmp-orange);
}

.footer-brand p {
    color: #97a8bb;
    margin-top: 12px;
    max-width: 360px;
}

.footer-brand .logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    height: 50px;
}

.footer-brand .brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: .02em;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    color: #8a9bb0;
    font-size: .88rem;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,.06);
    color: #cbd6e2;
}

@media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
    background:
        radial-gradient(circle at 90% 10%, rgba(231,111,60,.18), transparent 45%),
        linear-gradient(170deg, var(--rmp-navy), var(--rmp-deep));
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 50px;
    background:
        radial-gradient(circle at 18% 100%, var(--rmp-orange) 0 28px, transparent 30px),
        radial-gradient(circle at 50% 100%, var(--rmp-cream) 0 28px, transparent 30px),
        radial-gradient(circle at 82% 100%, var(--rmp-teal) 0 28px, transparent 30px);
}

.page-hero h1 {
    color: #fff;
    max-width: 900px;
    margin: 0 0 16px;
    font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.page-hero p {
    max-width: 720px;
    color: rgba(255,255,255,.82);
    font-size: 1.15rem;
}

/* ---------- Two-col content ---------- */
.two-col {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: start;
}

@media (max-width: 880px) {
    .two-col { grid-template-columns: 1fr; gap: 28px; }
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.feature-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 14px;
    align-items: start;
    color: var(--rmp-ink);
}

.feature-list li::before {
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, var(--rmp-orange) 0 50%, transparent 51%) center/100% 100% no-repeat,
        var(--rmp-cream);
    margin-top: 3px;
    border: 2px solid var(--rmp-navy);
}

/* ---------- News ---------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 880px) { .news-grid { grid-template-columns: 1fr; } }

.news-card {
    background: #fff;
    border: 1px solid var(--rmp-line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.news-card .thumb {
    height: 160px;
    background:
        radial-gradient(circle at 18% 100%, var(--rmp-orange) 0 70px, transparent 72px),
        radial-gradient(circle at 50% 100%, var(--rmp-cream) 0 70px, transparent 72px),
        radial-gradient(circle at 82% 100%, var(--rmp-teal) 0 70px, transparent 72px),
        linear-gradient(160deg, var(--rmp-navy), var(--rmp-deep));
}

.news-card .body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }

.news-card .meta { font-size: .78rem; color: var(--rmp-grey); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }

.news-card h3 { font-size: 1.15rem; margin: 0 0 .4em; }

.news-card p { color: var(--rmp-grey); font-size: .95rem; margin: 0 0 14px; flex: 1; }

.news-card .read { color: var(--rmp-orange); font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--rmp-line);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.contact-info {
    background: var(--rmp-navy);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.contact-info::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(231,111,60,.18);
}

.contact-info h3 { color: #fff; }

.contact-info dl {
    margin: 24px 0 0;
    display: grid;
    gap: 18px;
}

.contact-info dt {
    font-family: 'Poppins', sans-serif;
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--rmp-cream);
    opacity: .8;
    margin-bottom: 4px;
}

.contact-info dd {
    margin: 0;
    color: #fff;
    font-weight: 500;
}

.contact-info dd a { color: #fff; }

.contact-info dd a:hover { color: var(--rmp-orange); }

.form-row {
    display: grid;
    gap: 16px;
}

.form-row.two { grid-template-columns: 1fr 1fr; }

@media (max-width: 600px) { .form-row.two { grid-template-columns: 1fr; } }

.form-field label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--rmp-navy);
    margin-bottom: 6px;
    font-size: .92rem;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: 1.5px solid var(--rmp-line);
    background: var(--rmp-soft);
    border-radius: 12px;
    padding: 14px 16px;
    font: inherit;
    color: var(--rmp-ink);
    transition: border-color .15s, background .15s, box-shadow .15s;
}

.form-field textarea { min-height: 140px; resize: vertical; }

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--rmp-teal);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0,96,117,.12);
}

.form-actions { margin-top: 22px; display: flex; gap: 12px; align-items: center; }

.form-confirmation {
    background: rgba(0,96,117,.08);
    border: 1.5px solid var(--rmp-teal);
    color: var(--rmp-teal);
    padding: 18px 20px;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 18px;
}

/* ---------- Big slogan blocks ---------- */
.scream {
    background: var(--rmp-cream);
    padding: 110px 0;
    text-align: center;
}

.scream h2 {
    font-size: clamp(2.4rem, 6vw, 5.4rem);
    color: var(--rmp-navy);
    line-height: 1;
    margin: 0;
}

.scream .stroke { color: var(--rmp-orange); }
.scream .small { display: block; font-size: clamp(1rem, 1.6vw, 1.4rem); font-weight: 600; color: var(--rmp-teal); margin-top: 18px; letter-spacing: .12em; text-transform: uppercase; }

/* ---------- Stats ---------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.stat {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    padding: 28px;
}

.stat strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--rmp-orange);
    line-height: 1;
    margin-bottom: 6px;
}

.stat span { color: rgba(255,255,255,.75); }

/* ---------- Form validation overrides (Blazor) ---------- */
.valid.modified:not([type=checkbox]) { outline: none; border-color: var(--rmp-teal); }
.invalid { outline: none; border-color: #e50000; }
.validation-message { color: #e50000; font-size: .88rem; margin-top: 6px; display: block; }

/* ---------- Blazor error UI ---------- */
.blazor-error-boundary {
    background: var(--rmp-orange);
    padding: 1rem 1rem 1rem 1rem;
    color: white;
    border-radius: 8px;
}

.blazor-error-boundary::after { content: "Er is een fout opgetreden."; }
