:root {
  --ink: #15211d;
  --muted: #6f7873;
  --paper: #f4f3ee;
  --card: #fff;
  --line: #dedfd9;
  --green: #174f3f;
  --green-2: #23765c;
  --mint: #dcece5;
  --orange: #e88a38;
  --red: #bd4b43;
  --yellow: #f5e7b8;
  --shadow: 0 14px 35px rgba(23, 45, 37, .08);
}
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 14px/1.45 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.shell { min-height: 100vh; display: grid; grid-template-columns: 238px 1fr; }
.sidebar { position: fixed; inset: 0 auto 0 0; width: 238px; display: flex; flex-direction: column; padding: 26px 18px; color: #eef6f2; background: var(--green); }
.brand { display: flex; gap: 11px; align-items: center; padding: 0 10px 26px; font-size: 18px; font-weight: 800; letter-spacing: .11em; }
.brand-mark { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 9px; color: #173d32; background: #b9dfce; font-weight: 900; }
.nav { display: grid; gap: 6px; }
.nav button { width: 100%; display: flex; align-items: center; gap: 11px; padding: 11px 12px; border: 0; border-radius: 9px; color: #cce0d8; background: transparent; text-align: left; }
.nav button:hover, .nav button.active { color: #fff; background: rgba(255,255,255,.12); }
.nav .icon { width: 22px; font-size: 16px; text-align: center; }
.sidebar-foot { margin-top: auto; border-top: 1px solid rgba(255,255,255,.16); padding: 18px 9px 0; }
.org { color: #adc9bf; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.user { margin-top: 9px; display: flex; align-items: center; gap: 10px; }
.avatar { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 50%; background: #e5aa69; color: #46301e; font-weight: 800; }
.user small { display: block; color: #a9c4ba; }
.main { grid-column: 2; padding: 35px 40px 56px; max-width: 1600px; width: 100%; }
.topbar, .page-title, .split { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.eyebrow { color: var(--green-2); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
h1 { margin: 4px 0 4px; font: 700 31px/1.15 Georgia, serif; letter-spacing: -.02em; }
h2 { margin: 0; font: 700 20px/1.2 Georgia, serif; }
h3 { margin: 0 0 14px; font-size: 15px; }
.subtitle { margin: 0; color: var(--muted); }
.actions { display: flex; gap: 9px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 15px; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); background: var(--card); font-weight: 700; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 5px 14px rgba(0,0,0,.07); }
.btn-primary { border-color: var(--green); color: white; background: var(--green); }
.btn-danger { border-color: #efd3cf; color: var(--red); background: #fff8f7; }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 27px 0 18px; }
.card { border: 1px solid var(--line); border-radius: 12px; background: var(--card); box-shadow: var(--shadow); }
.kpi { padding: 19px; box-shadow: none; }
.kpi-label { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 12px; font-weight: 700; }
.kpi-icon { width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; background: var(--mint); color: var(--green); }
.kpi-glyph { width: 24px; height: 24px; display: block; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.kpi strong { display: block; margin-top: 12px; font: 700 28px Georgia, serif; }
.kpi small { color: var(--muted); }
.up { color: var(--color-success) !important; }
.warn { color: var(--red) !important; }
.dashboard-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 16px; }
.panel { padding: 21px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 19px; }
.panel-head a { color: var(--green-2); font-weight: 700; text-decoration: none; cursor: pointer; }
.bar-row { display: grid; grid-template-columns: 95px 1fr 30px; align-items: center; gap: 12px; margin: 15px 0; }
.bar { height: 8px; overflow: hidden; border-radius: 9px; background: #edf0ec; }
.bar > span { display: block; height: 100%; border-radius: inherit; background: var(--green-2); }
.bar-row b { text-align: right; }
.list-item { display: grid; grid-template-columns: 36px 1fr auto; gap: 11px; align-items: center; padding: 12px 0; border-top: 1px solid #ecece7; }
.list-item:first-of-type { border-top: 0; }
.mini-avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #e7eee9; color: var(--green); font-weight: 800; }
.list-item small { display: block; color: var(--muted); }
.table-card { margin-top: 24px; overflow: hidden; }
.toolbar { display: flex; flex-wrap: wrap; gap: 9px; padding: 16px; border-bottom: 1px solid var(--line); }
.search { position: relative; min-width: 270px; flex: 1; }
.search input { width: 100%; padding: 10px 12px 10px 37px; border: 1px solid var(--line); border-radius: 8px; background: #fafaf8; }
.search::before { content: '⌕'; position: absolute; left: 13px; top: 7px; color: var(--muted); font-size: 20px; }
select, input, textarea { border: 1px solid #d5d8d2; border-radius: 8px; color: var(--ink); background: #fff; outline: none; }
input:focus, textarea:focus, select:focus { border-color: var(--green-2); box-shadow: 0 0 0 3px rgba(35,118,92,.1); }
.toolbar select { padding: 9px 30px 9px 10px; }
table { width: 100%; border-collapse: collapse; }
th { padding: 11px 15px; color: var(--muted); background: #fafaf7; font-size: 11px; text-align: left; text-transform: uppercase; letter-spacing: .05em; }
td { padding: 15px; border-top: 1px solid #ecece8; vertical-align: middle; }
tbody tr { cursor: pointer; }
tbody tr:hover { background: #fbfcfa; }
.subject { font-weight: 750; }
.subline { margin-top: 3px; color: var(--muted); font-size: 12px; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 8px; border-radius: 99px; background: #edf0ed; font-size: 11px; font-weight: 750; white-space: nowrap; }
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #87908b; }
.badge.new { color: #23634f; background: #e4f1eb; }.badge.new::before { background: #2d896a; }
.badge.progress { color: #88651f; background: #fbf1cf; }.badge.progress::before { background: #d09c28; }
.badge.wait { color: #8b5529; background: #f8e5d4; }.badge.wait::before { background: #d57a35; }
.badge.closed { color: #656c68; background: #eceeec; }
.tags { display: flex; flex-wrap: wrap; gap: 5px; }
.tag { padding: 3px 7px; border: 1px solid #dce5df; border-radius: 5px; color: #3f6557; background: #f1f6f3; font-size: 11px; }
.urgent { color: var(--red); font-weight: 700; }
.form-wrap { max-width: 940px; margin-top: 25px; }
.form-card { padding: 25px; margin-bottom: 16px; }
.section-title { display: flex; align-items: center; gap: 10px; margin-bottom: 21px; padding-bottom: 14px; border-bottom: 1px solid #e9eae5; }
.step { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 12px; font-weight: 800; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.field { margin-bottom: 15px; }
.field label { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 750; }
.field input, .field textarea, .field select { width: 100%; padding: 11px 12px; }
.field textarea { min-height: 115px; resize: vertical; }
.hint { margin-top: 5px; color: var(--muted); font-size: 11px; }
.autocomplete { position: relative; }
.suggestions { position: absolute; z-index: 5; left: 0; right: 0; top: calc(100% + 5px); overflow: hidden; border: 1px solid var(--line); border-radius: 9px; background: #fff; box-shadow: var(--shadow); }
.suggestion { display: flex; justify-content: space-between; gap: 12px; padding: 12px; border-bottom: 1px solid #eee; cursor: pointer; }
.suggestion:hover { background: #f4f8f5; }
.suggestion small { display: block; color: var(--muted); }
.journalist-chip { display: flex; justify-content: space-between; align-items: center; padding: 14px; border: 1px solid #bdd4ca; border-radius: 9px; background: #f0f7f3; }
.form-actions { display: flex; justify-content: flex-end; gap: 10px; position: sticky; bottom: 0; padding: 14px 0; background: linear-gradient(transparent, var(--paper) 25%); }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .7fr); gap: 17px; margin-top: 25px; }
.detail-main, .detail-side { display: grid; gap: 16px; align-content: start; }
.quote { padding: 18px; border-left: 3px solid var(--green-2); border-radius: 0 7px 7px 0; background: #f6f8f5; white-space: pre-wrap; }
.meta { display: grid; grid-template-columns: 120px 1fr; gap: 11px; padding: 8px 0; border-bottom: 1px solid #ecece7; }
.meta:last-child { border: 0; }
.meta span { color: var(--muted); }
.timeline { margin: 0; padding: 0; list-style: none; }
.timeline li { position: relative; padding: 0 0 18px 23px; border-left: 1px solid #cfd8d3; }
.timeline li:last-child { border: 0; padding-bottom: 0; }
.timeline li::before { content: ''; position: absolute; left: -5px; top: 3px; width: 9px; height: 9px; border-radius: 50%; background: var(--green-2); }
.timeline small { display: block; color: var(--muted); }
.empty { padding: 50px 20px; color: var(--muted); text-align: center; }
.toast { position: fixed; z-index: 20; right: 25px; bottom: 25px; max-width: 350px; padding: 13px 17px; border-radius: 9px; color: #fff; background: var(--green); box-shadow: var(--shadow); transform: translateY(80px); opacity: 0; transition: .25s; }
.toast.show { transform: translateY(0); opacity: 1; }
@media (max-width: 1000px) { .kpis { grid-template-columns: 1fr 1fr; } .dashboard-grid, .detail-grid { grid-template-columns: 1fr; } .hide-tablet { display: none; } }
@media (max-width: 720px) { .shell { display: block; } .sidebar { position: static; width: 100%; height: auto; padding: 14px; } .brand { padding-bottom: 12px; } .nav { display: flex; overflow-x: auto; } .nav button { width: auto; white-space: nowrap; } .sidebar-foot { display: none; } .main { padding: 24px 16px 40px; } .topbar { align-items: flex-start; } .kpis, .grid-2 { grid-template-columns: 1fr; } .page-title { align-items: flex-start; flex-direction: column; } table { min-width: 760px; } .table-card { overflow-x: auto; } }

/* Productuitbreiding: mediaverzoeken, branding en instellingen */
.org-identity { display: flex; align-items: center; gap: 10px; margin-top: 10px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.13); }
.org-identity small, .sidebar-user small { display: block; color: #a9c4ba; }
.org-logo { width: 38px; height: 38px; display: grid; place-items: center; overflow: hidden; border-radius: 9px; color: var(--green); background: #fff; font-size: 10px; font-weight: 900; letter-spacing: .02em; }
.org-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.sidebar-user { padding-top: 13px; cursor: pointer; }
.avatar-image { width: 34px; height: 34px; flex: none; object-fit: cover; border-radius: 50%; }
.avatar-image.tiny, .mini-avatar.tiny { width: 24px; height: 24px; font-size: 9px; }
.row-user { margin: 0; }
.table-heading { padding: 20px 20px 0; }
.type-pill { display: inline-flex; margin-right: 5px; padding: 2px 6px; border-radius: 4px; color: #6e5530; background: #f6ecd9; font-size: 10px; font-weight: 800; }
.type-pill.prominent { margin: 0 0 8px; padding: 4px 8px; }
.detail-actions { display: flex; justify-content: flex-end; gap: 9px; margin: 19px 0 -8px; }
.with-top-space { margin-top: 20px; }
.section-bottom { margin-bottom: 18px; }
.short-textarea { min-height: 75px !important; }
.status-field { max-width: 310px; }
.align-right { text-align: right; }
.top-spaced { margin-top: 25px; }
.journalist-contact { margin-top: 15px; color: var(--muted); font-size: 12px; }
.journalist-chip > div { display: flex; align-items: center; gap: 11px; }
.journalist-chip .mini-avatar { background: #cfe3da; }
.new-person-panel { margin-top: 17px; padding: 19px; border: 1px solid #c9dcd3; border-radius: 10px; background: #f5faf7; }
.section-subhead { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; margin-bottom: 17px; }
.section-subhead span { color: var(--muted); font-size: 12px; }
.create-suggestion { color: var(--green); background: #f4f9f6; }
.tag-editor { position: relative; }
.selected-tags { min-height: 7px; margin-bottom: 8px; }
.selected-tag { display: inline-flex; align-items: center; gap: 5px; color: #fff; border-color: var(--green); background: var(--green); }
.selected-tag button { padding: 0; border: 0; color: inherit; background: transparent; font-size: 16px; line-height: 12px; }
.tag-menu { max-height: 310px; overflow-y: auto; }
.suggestion-caption { padding: 9px 12px; color: var(--muted); background: #f7f7f4; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.empty-small { padding: 13px; color: var(--muted); text-align: center; font-size: 12px; }
.icon-button { width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 7px; color: var(--ink); background: var(--card); }
.danger-icon { color: var(--red); }
.danger-icon:hover { border-color: #dfb9b5; background: #fff7f6; }
.media-list { display: grid; gap: 0; }
.media-card { display: grid; grid-template-columns: 52px minmax(220px,1fr) auto 24px; gap: 15px; align-items: center; padding: 19px 21px; border-top: 1px solid #ecece7; cursor: pointer; transition: background .18s ease; }
.media-card:first-child { border-top: 0; }
.media-card:hover { background: var(--mist-light); }
.media-card:hover .media-arrow { transform: translateX(3px); }
.media-logo { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid #d6e1db; border-radius: 10px; color: var(--green); background: #f2f7f4; font-size: 11px; font-weight: 900; }
.media-info h2 { margin-bottom: 3px; }
.media-info p { margin: 0 0 9px; color: var(--muted); font-size: 12px; }
.media-open-hint { color: var(--green); font-size: 11px; font-weight: 750; }
.media-people { display: flex; flex-wrap: wrap; gap: 7px 14px; }
.media-people span { display: inline-flex; align-items: center; gap: 6px; color: #48534e; font-size: 12px; }
.media-total { min-width: 70px; text-align: right; }
.media-total strong { display: block; font: 700 24px Georgia, serif; }
.media-total small { color: var(--muted); }
.media-metrics { display: grid; grid-template-columns: repeat(2,minmax(105px,auto)); gap: 12px; }
.media-metrics > div { padding-left: 15px; border-left: 1px solid var(--line); }
.media-metrics strong { display: block; color: var(--green); font: 900 20px/1 "Arial Black", "Avenir Next", sans-serif; }
.media-metrics small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; white-space: nowrap; }
.media-arrow { color: var(--green); font-size: 19px; font-weight: 900; transition: transform .18s ease; }
.medium-profile-summary { display: grid; grid-template-columns: 70px minmax(220px,1fr) auto; gap: 18px; align-items: center; margin-top: 24px; padding: 22px 24px; border-top: 4px solid var(--green); }
.medium-profile-logo { width: 64px; height: 64px; font-size: 15px; }
.medium-profile-summary h2 { font-size: 24px; }
.medium-profile-summary p { margin: 6px 0 0; color: var(--muted); }
.medium-profile-metrics { display: grid; grid-template-columns: repeat(3,minmax(100px,auto)); gap: 18px; }
.medium-profile-metrics > div { padding-left: 17px; border-left: 1px solid var(--line); }
.medium-profile-metrics span { display: block; color: var(--muted); font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.medium-profile-metrics strong { display: block; margin-top: 5px; color: var(--green); font: 900 25px/1 "Arial Black", "Avenir Next", sans-serif; }
.medium-journalists { margin-top: 14px; padding: 21px; }
.medium-journalists .panel-head { margin-bottom: 10px; }
.medium-journalists .subtitle { margin-top: 5px; }
.medium-journalist-list { display: grid; }
.medium-journalist-row { width: 100%; display: grid; grid-template-columns: 38px minmax(0,1fr) auto 24px; gap: 12px; align-items: center; padding: 14px 4px; border: 0; border-top: 1px solid var(--line); color: var(--ink); background: transparent; text-align: left; }
.medium-journalist-row:hover { background: var(--mist-light); }
.medium-journalist-row > span:nth-child(2) { min-width: 0; }
.medium-journalist-row b { display: block; }
.medium-journalist-row small { display: block; overflow: hidden; margin-top: 2px; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.journalist-request-total { min-width: 58px; text-align: right; }
.journalist-request-total b { color: var(--green); font-size: 16px; }
.journalist-request-total small { font-size: 9px; text-transform: uppercase; }
.tag-management-row { display: grid; grid-template-columns: minmax(130px,200px) 1fr 35px 35px; align-items: center; gap: 13px; padding: 12px 0; border-top: 1px solid #ecece7; }
.tag-name { font-weight: 750; }
.settings-grid { display: grid; grid-template-columns: 290px minmax(0,650px); gap: 17px; align-items: start; }
.profile-photo-card { text-align: center; }
.profile-photo-card h2 { margin-top: 14px; }
.profile-photo-card p { margin: 6px 0 17px; color: var(--muted); }
.profile-photo-card > small { display: block; margin-top: 9px; color: var(--muted); }
.large-avatar { width: 112px; height: 112px; display: grid; place-items: center; overflow: hidden; margin: 4px auto; border-radius: 50%; color: var(--green); background: var(--mint); font: 800 30px Georgia,serif; }
.large-avatar img { width: 100%; height: 100%; object-fit: cover; }
.large-avatar.org-preview { border: 1px solid var(--line); border-radius: 18px; background: #fff; font-size: 19px; }
.large-avatar.org-preview img { object-fit: contain; padding: 10px; }
.upload-button input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.color-field { display: grid; grid-template-columns: 60px 1fr; gap: 9px; }
.color-field input[type="color"] { width: 60px; height: 43px; padding: 3px; }
.brand-preview { display: flex; align-items: center; gap: 12px; margin: 18px 0; padding: 16px; border-radius: 10px; color: #fff; background: var(--preview); }
.brand-preview > span { width: 42px; height: 42px; display: grid; place-items: center; overflow: hidden; padding: 4px; border-radius: 8px; color: var(--preview); background: #fff; font-size: 10px; font-weight: 900; }
.brand-preview img { width: 100%; height: 100%; object-fit: contain; }
.brand-preview small { display: block; color: rgba(255,255,255,.68); }

@media (max-width: 900px) {
  .settings-grid { grid-template-columns: 1fr; }
  .profile-photo-card { display: grid; grid-template-columns: auto 1fr; column-gap: 17px; text-align: left; }
  .large-avatar { grid-row: 1 / 5; margin: 0; }
  .media-card { grid-template-columns: 52px 1fr 24px; }
  .media-metrics { grid-column: 2; grid-row: 2; }
  .media-arrow { grid-column: 3; grid-row: 1 / 3; }
  .medium-profile-summary { grid-template-columns: 70px 1fr; }
  .medium-profile-metrics { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .detail-actions { justify-content: flex-start; flex-wrap: wrap; }
  .section-subhead { display: block; }
  .section-subhead span { display: block; margin-top: 4px; }
  .tag-management-row { grid-template-columns: 120px 1fr 25px 32px; }
  .media-card { grid-template-columns: 45px 1fr 20px; }
  .media-total { grid-column: 2; text-align: left; }
  .media-metrics { grid-template-columns: 1fr 1fr; }
  .medium-profile-summary { grid-template-columns: 1fr; }
  .medium-profile-metrics { grid-template-columns: 1fr 1fr 1fr; }
  .medium-profile-metrics > div { padding-left: 0; border-left: 0; }
}

/* Zelfstandige VAS-module: bewust neutraal en onafhankelijk van tenantpresentatie. */
.accreditation-module-shell {
  --accreditation-black:#171717;
  --accreditation-ink:#252525;
  --accreditation-gray:#666;
  --accreditation-line:#d6d6d6;
  --accreditation-soft:#f4f4f4;
  min-height:100vh;
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  color:var(--accreditation-ink);
  background:#fff;
}
.accreditation-module-shell > aside { position:sticky; top:0; height:100vh; display:flex; flex-direction:column; padding:28px 20px 20px; border-right:1px solid var(--accreditation-line); background:#fff; }
.accreditation-module-name { display:grid; gap:4px; padding:0 10px 28px; border-bottom:1px solid var(--accreditation-line); }
.accreditation-module-name strong { font-size:20px; letter-spacing:-.02em; }
.accreditation-module-name span { color:var(--accreditation-gray); font-size:11px; text-transform:uppercase; letter-spacing:.08em; }
.accreditation-module-shell nav { display:grid; gap:4px; margin-top:24px; }
.accreditation-module-shell nav button,.accreditation-module-exit { width:100%; min-height:44px; padding:10px 12px; border:1px solid transparent; border-radius:8px; color:var(--accreditation-ink); background:transparent; font:inherit; font-size:13px; font-weight:650; text-align:left; cursor:pointer; }
.accreditation-module-shell nav button:hover { background:var(--accreditation-soft); }
.accreditation-module-shell nav button.active { color:#fff; background:var(--accreditation-black); }
.accreditation-module-exit { margin-top:auto; color:var(--accreditation-gray); border-color:var(--accreditation-line); }
.accreditation-module-shell > main { min-width:0; padding:40px clamp(28px,4vw,64px) 64px; background:#fff; }
.accreditation-module-header { width:100%; max-width:1440px; display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:28px; padding-bottom:24px; border-bottom:1px solid var(--accreditation-line); }
.accreditation-module-header > div { display:grid; gap:7px; }
.accreditation-module-header span { color:var(--accreditation-gray); font-size:11px; font-weight:750; letter-spacing:.08em; }
.accreditation-module-header h1 { margin:0; font-size:34px; line-height:1.1; letter-spacing:-.025em; }
.accreditation-module-header p { margin:0; color:var(--accreditation-gray); font-size:14px; }
.accreditation-module-shell :is(.card,.accreditation-metrics > div,.accreditation-metrics > button) { border:1px solid var(--accreditation-line); background:#fff; box-shadow:none; }
.accreditation-module-shell :is(.btn,.accreditation-filter-button) { border-color:var(--accreditation-line); color:var(--accreditation-ink); background:#fff; }
.accreditation-module-shell :is(.btn-primary,.accreditation-filter-button.active) { color:#fff; border-color:var(--accreditation-black); background:var(--accreditation-black); }
.accreditation-module-shell :is(.accreditation-toolbar select,.accreditation-filter-panel select,.proof-viewer-trigger,.zone-choice span) { border-color:var(--accreditation-line); background:var(--accreditation-soft); }
.accreditation-module-shell :is(.accreditation-row:hover,.accreditation-row.selected,.accreditation-event-overview-card > button:hover) { background:var(--accreditation-soft); }
.accreditation-module-shell :is(.accreditation-status-new,.accreditation-status-review,.accreditation-status-approved,.accreditation-status-rejected,.accreditation-event-state) { color:#4c4c4c; border-color:#8a8a8a; background:#fff; }
.accreditation-module-shell :is(.accreditation-metrics small,.accreditation-event-overview-card > button > strong) { color:var(--accreditation-black); }
.accreditation-module-shell .zone-choice input:checked + span { color:#fff; border-color:var(--accreditation-black); background:var(--accreditation-black); }

.accreditation-portal { color:#252525; background:#fff; }
.accreditation-portal > header { border-bottom:1px solid #d6d6d6; background:#fff; }
.accreditation-portal > header b,.accreditation-portal :is(.portal-title > span,.portal-event-summary span,.portal-event-card span,.portal-login-card > span,.portal-application-detail-hero > div > span,.portal-event-detail-heading span,.portal-row-arrow,.portal-section-heading button span) { color:#4c4c4c; }
.accreditation-portal :is(.portal-notification,.portal-event-card,.portal-own-applications,.portal-event-summary,.portal-application-form,.portal-how,.portal-login-card,.portal-application-detail-hero,.portal-detail-card) { border:1px solid #d6d6d6; background:#fff; }
.accreditation-portal :is(.portal-application-row,.portal-detail-fields > div,.portal-proof-receipt,.proof-upload-field) { background:#f4f4f4; }
.accreditation-portal .portal-application-row:hover { background:#eaeaea; }
.accreditation-portal :is(.btn-primary,.portal-notification input:checked) { color:#fff; border-color:#171717; background:#171717; }
.accreditation-portal .portal-notification input::after { background:#fff; }
.accreditation-portal :is(.accreditation-status-new,.accreditation-status-review,.accreditation-status-approved,.accreditation-status-rejected) { color:#4c4c4c; border-color:#8a8a8a; background:#fff; }
.accreditation-portal .portal-how li::before,.accreditation-portal .portal-zone-summary > div span { background:#eaeaea; }
.module-unavailable { min-height:100vh; display:grid; place-content:center; gap:8px; padding:32px; color:#252525; background:#fff; text-align:center; }
.module-unavailable h1,.module-unavailable p { margin:0; }
.module-unavailable p { color:#666; }

@media (max-width:720px) {
  .accreditation-module-shell { grid-template-columns:1fr; }
  .accreditation-module-shell > aside { position:static; height:auto; padding:16px; border-right:0; border-bottom:1px solid var(--accreditation-line); }
  .accreditation-module-name { padding:0 0 14px; }
  .accreditation-module-shell nav { grid-template-columns:repeat(3,minmax(0,1fr)); margin-top:12px; }
  .accreditation-module-shell nav button { text-align:center; }
  .accreditation-module-exit { margin-top:12px; }
  .accreditation-module-shell > main { padding:28px 16px 48px; }
  .accreditation-module-header { align-items:flex-start; flex-direction:column; }
}

/* PRESSLANE themacontract: vaste productlaag, semantische kleuren en gecontroleerde organisatie-accenten. */
:root {
  --font-product: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: var(--font-product);
  --space-page-inline: 44px;
  --space-page-block: 34px;
  --size-sidebar: 268px;
  --size-control: 44px;
  --shape-control: 8px;
  --shape-panel: 16px;
  --shape-hero: 34px;
  --content-max: 1660px;
  --color-background: #f5f6fa;
  --color-surface: #ffffff;
  --color-text: #171426;
  --color-text-muted: #686579;
  --color-border: #dfe2eb;
  --color-platform: #10131b;
  --color-platform-raised: #171d29;
  --organization-primary: #2402ad;
  --organization-secondary: #2c9fa3;
  --color-primary-action: #2402ad;
  --color-on-primary-action: #ffffff;
  --color-communication-accent: #237c80;
  --color-success: #16734a;
  --color-warning: #806000;
  --color-error: #b93f45;
  --color-focus: #237c80;
  --ink: var(--color-text);
  --muted: var(--color-text-muted);
  --paper: var(--color-background);
  --card: var(--color-surface);
  --line: var(--color-border);
  --green: var(--color-primary-action);
  --green-2: var(--color-communication-accent);
  --mint: color-mix(in srgb, var(--color-communication-accent) 10%, var(--color-surface));
  --orange: var(--color-warning);
  --red: var(--color-error);
  --yellow: color-mix(in srgb, var(--color-warning) 15%, var(--color-surface));
  --mist-light: #f7f8fb;
  --mist: #f0f1f6;
  --mist-medium: #e7e9f0;
  --mist-dark: #dfe2eb;
  --mist-darkest: #c8cbd7;
  --shadow: 0 18px 46px rgba(30,26,58,.08);
}

body {
  color: var(--ink);
  background:
    repeating-linear-gradient(135deg,transparent 0 72px,rgba(44,159,163,.055) 73px,transparent 74px 146px),
    linear-gradient(135deg, rgba(216,235,230,.26) 0, rgba(216,235,230,0) 38%),
    var(--paper);
  background-attachment: fixed;
  font-family: var(--font-product);
}

.shell { grid-template-columns: var(--size-sidebar) minmax(0,1fr); }
.sidebar {
  width: var(--size-sidebar);
  padding: 22px 16px 18px;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 30% 0%, color-mix(in srgb,var(--color-communication-accent) 20%,transparent), transparent 19rem),linear-gradient(155deg,#17132b 0%,var(--color-platform) 60%,#0d1118 100%);
}
.sidebar::before {
  content: '';
  position: absolute;
  width: 275px;
  height: 310px;
  right: -145px;
  top: 154px;
  border: 1px solid rgba(255,255,255,.3);
  transform: rotate(45deg);
  border-radius: 32px;
  pointer-events: none;
}
.sidebar::after {
  content: 'ONS VOETBAL KLEURT DE WERELD ORANJE';
  position: absolute;
  right: -93px;
  top: 330px;
  width: 270px;
  color: rgba(255,255,255,.42);
  transform: rotate(90deg);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
  pointer-events: none;
}
.brand {
  position: relative;
  z-index: 1;
  font-family: "Arial Black", "Avenir Next", sans-serif;
  letter-spacing: .08em;
}
.brand-mark { border-color: #1f1f1f; color: #fff; background: #1f1f1f; }
.nav { position: relative; z-index: 1; }
.nav button { color: #fff; font-weight: 600; text-shadow: 0 1px 1px rgba(105,32,0,.14); }
.nav button:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav button.active { color: #fff; background: color-mix(in srgb,var(--color-communication-accent) 22%,transparent); box-shadow: inset 0 0 0 1px color-mix(in srgb,var(--color-communication-accent) 28%,transparent); }
.sidebar-foot { position: relative; z-index: 1; border-color: rgba(255,255,255,.3); }
.org { color: rgba(255,255,255,.66); }
.org-identity { border-color: rgba(255,255,255,.24); }
.org-identity small, .sidebar-user small { color: rgba(255,255,255,.7); }
.org-logo { width: 44px; height: 44px; color: var(--green); background: #f2f8f5; }
.org-logo img { padding: 2px; }
.sidebar-user .mini-avatar { color: #1f1f1f; background: #e6f1eb; }

.main { grid-column: 2; width: 100%; max-width: var(--content-max); padding: var(--space-page-block) var(--space-page-inline) 64px; }
.topbar {
  position: relative;
  min-height: 146px;
  overflow: hidden;
  padding: 31px 230px 31px 34px;
  border: 1px solid var(--mist-dark);
  border-radius: var(--shape-hero);
  corner-shape: squircle;
  background: radial-gradient(circle at 92% 14%,color-mix(in srgb,var(--color-communication-accent) 16%,transparent),transparent 13rem),linear-gradient(118deg,var(--card) 0%,var(--card) 70%,color-mix(in srgb,var(--color-communication-accent) 7%,var(--card)) 100%);
  box-shadow: var(--shadow);
}
.topbar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background: var(--green);
}
.topbar::after {
  content: '';
  position: absolute;
  z-index: 0;
  right: -44px;
  top: -103px;
  width: 265px;
  height: 265px;
  border: 25px double rgba(255,96,0,.13);
  border-radius: 44px;
  transform: rotate(45deg);
}
.topbar > * { position: relative; z-index: 1; }
.topbar .actions { position: absolute; right: 28px; top: 43px; }
.eyebrow { color: var(--green); font-size: 11px; font-weight: 900; letter-spacing: .13em; }
h1, h2 {
  font-family: var(--font-heading);
  font-weight: 750;
  letter-spacing: -.035em;
}
h1 { margin: 7px 0 5px; font-size: 31px; line-height: 1.08; text-transform: none; }
h2 { line-height: 1.12; }
h3 { font-weight: 850; }
.subtitle { color: #626b67; }
.btn { min-height: var(--size-control); border-color: var(--mist-dark); border-radius: var(--shape-control); corner-shape: squircle; }
.btn-primary { border-color: var(--color-primary-action); color: var(--color-on-primary-action); background: var(--color-primary-action); box-shadow: 0 8px 20px color-mix(in srgb,var(--color-primary-action) 20%,transparent); }
.btn-primary:hover { background: color-mix(in srgb,var(--color-primary-action),#000 10%); }
.card { border-color: var(--mist-dark); border-radius: var(--shape-panel); corner-shape: squircle; }
.kpis { margin-top: 19px; }
.kpi { position: relative; overflow: hidden; border-top: 4px solid var(--green); }
.kpi::after { content: ''; position: absolute; right: -27px; bottom: -40px; width: 88px; height: 88px; border: 1px solid var(--mist-medium); border-radius: 14px; transform: rotate(45deg); }
.kpi-label { color: #626b67; text-transform: uppercase; letter-spacing: .035em; }
.kpi-icon { color: var(--green); background: #e6f1eb; }
.kpi strong { position: relative; z-index: 1; color: #1f1f1f; font-family: "Arial Black", "Avenir Next", sans-serif; }
.up { color: #d54e00 !important; }
.panel-head a { color: #db5200; }
.bar { background: #e6f1eb; }
.bar > span { background: linear-gradient(90deg, var(--green), #ff8843); }
.mini-avatar { color: #1f1f1f; background: #d8ebe6; }
.table-card { border-top: 4px solid var(--green); }
th { color: #555e5a; background: #e6f1eb; font-weight: 850; }
tbody tr:hover { background: #f2f8f5; }
.search input { background: #f8fbf9; }
input:focus, textarea:focus, select:focus { border-color: var(--color-focus); box-shadow: 0 0 0 3px color-mix(in srgb,var(--color-focus) 22%,transparent); }
.badge.new { color: #c84700; background: #fff0e7; }.badge.new::before { background: var(--green); }
.badge.progress { color: #776014; background: #fff4ca; }
.badge.wait { color: #8b4d25; background: #f8e5d4; }
.type-pill { color: #c34700; background: #fff0e7; }
.tag { border-color: var(--mist-dark); color: #354a44; background: #f2f8f5; }
.selected-tag { color: #fff; border-color: var(--green); background: var(--green); }
.step { color: #fff; background: var(--green); }
.section-title { border-color: var(--mist-medium); }
.new-person-panel { border-color: var(--mist-darkest); background: #f2f8f5; }
.create-suggestion { color: #c94c00; background: #fff4ed; }
.journalist-chip { border-color: var(--mist-darkest); background: #f2f8f5; }
.journalist-chip .mini-avatar { color: #1f1f1f; background: #d8ebe6; }
.quote { border-left-color: var(--green); background: #f2f8f5; }
.timeline li::before { background: var(--green); }
.media-logo { color: #d34e00; border-color: var(--mist-dark); background: #f2f8f5; }
.team-shared-request-note { display:grid; gap:5px; padding:15px 17px; border-left:4px solid var(--green); border-radius:0 9px 9px 0; background:var(--mist-light); }
.team-shared-request-note b { color:var(--ink); font-size:13px; }
.team-shared-request-note span { color:var(--muted); font-size:12px; line-height:1.55; }

.press-kit-library { margin-top:24px; padding:22px; }
.press-kit-list-card { width:100%; display:grid; grid-template-columns:46px minmax(0,1fr) auto 22px; gap:13px; align-items:center; padding:14px 4px; border:0; border-top:1px solid var(--line); color:var(--ink); background:transparent; text-align:left; cursor:pointer; }
.press-kit-list-card:hover { color:var(--green-2); background:var(--mist-light); }
.press-kit-list-card small { display:block; margin-top:4px; color:var(--muted); font-size:11px; }
.press-kit-list-mark { width:42px; height:42px; display:grid; place-items:center; border-radius:8px; color:#fff; background:var(--green); font-size:10px; font-weight:900; }
.press-kit-status { padding:5px 9px; border-radius:99px; color:#a84106; background:#fff0e7; font-size:10px; font-weight:850; text-transform:uppercase; }
.press-kit-builder { display:grid; grid-template-columns:minmax(580px,1.25fr) minmax(360px,.75fr); gap:24px; align-items:start; }
.press-kit-form { min-width:0; }
.press-kit-program-input { min-height:170px; font-family:ui-monospace,SFMono-Regular,Menlo,monospace; font-size:12px; line-height:1.7; }
.press-kit-selection-input { min-height:420px; font-family:ui-monospace,SFMono-Regular,Menlo,monospace; font-size:12px; line-height:1.55; }
.press-kit-selection-inputs { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.press-kit-selection-inputs .press-kit-selection-input { min-height:190px; }
.press-kit-meeting-inputs { display:grid; gap:10px; }
.press-kit-meeting-input { display:grid; grid-template-columns:1fr .7fr .6fr; gap:10px; padding:12px; border:1px solid var(--line); border-radius:10px; background:var(--mist-light); }
.press-kit-unknown-players { margin-top:12px; }
.press-kit-unknown-players > p { margin:0; padding:11px 13px; border-radius:9px; color:var(--muted); background:var(--mist-light); font-size:11px; }
.press-kit-unknown-players > div { overflow:hidden; border:1px solid color-mix(in srgb,var(--color-primary-action) 42%,var(--line)); border-radius:14px; background:linear-gradient(135deg,color-mix(in srgb,var(--color-primary-action) 7%,var(--card)),var(--card) 58%); box-shadow:0 10px 28px color-mix(in srgb,var(--color-primary-action) 9%,transparent); }
.press-kit-unknown-heading { display:flex; gap:12px; align-items:center; padding:15px 16px 13px; border-bottom:1px solid var(--line); }
.press-kit-unknown-heading > div { display:grid; gap:3px; }
.press-kit-unknown-heading b { color:var(--ink); font-size:13px; letter-spacing:-.01em; }
.press-kit-unknown-heading span:not(.press-kit-unknown-status) { color:var(--muted); font-size:11px; line-height:1.45; }
.press-kit-unknown-status { flex:0 0 28px; display:grid; place-items:center; width:28px; height:28px; border-radius:50%; color:var(--color-on-primary-action); background:var(--color-primary-action); font-size:13px; font-weight:850; }
.press-kit-unknown-list { display:grid; gap:1px; padding:5px; }
.press-kit-unknown-players button { width:100%; display:grid; grid-template-columns:34px minmax(0,1fr) 24px; gap:11px; align-items:center; border:0; border-radius:10px; padding:10px 11px; color:var(--ink); text-align:left; background:transparent; cursor:pointer; transition:background .16s ease,transform .16s ease; }
.press-kit-unknown-players button:hover { background:color-mix(in srgb,var(--color-primary-action) 9%,var(--card)); transform:translateY(-1px); }
.press-kit-unknown-players button:focus-visible { outline:3px solid var(--color-focus); outline-offset:-2px; }
.press-kit-unknown-players button > span:nth-child(2) { display:grid; gap:2px; }
.press-kit-unknown-players button b { color:var(--ink); font-size:13px; }
.press-kit-unknown-players button small { color:var(--muted); font-size:10px; font-weight:650; }
.press-kit-unknown-add { display:grid; place-items:center; width:34px; height:34px; border:1px solid color-mix(in srgb,var(--color-primary-action) 46%,var(--line)); border-radius:9px; color:var(--color-primary-action); background:var(--card); font-size:18px; font-weight:800; }
.press-kit-unknown-arrow { color:var(--color-primary-action); font-size:17px; font-weight:800; text-align:center; }
.press-kit-statistics-actions { display:grid; grid-template-columns:auto minmax(0,1fr); gap:10px; align-items:stretch; margin-top:12px; }
.press-kit-statistics-actions > .btn { min-width:150px; }
.press-kit-statistics-confirmation { display:flex; gap:11px; align-items:flex-start; margin:0; padding:13px 14px; border:1px solid var(--line); border-radius:10px; background:var(--card); cursor:pointer; }
.press-kit-statistics-confirmation input { width:20px; height:20px; margin:1px 0 0; accent-color:var(--green); }
.press-kit-statistics-confirmation span b,.press-kit-statistics-confirmation span small { display:block; }
.press-kit-statistics-confirmation span small { margin-top:3px; color:var(--muted); font-size:10px; line-height:1.45; }
@media(max-width:720px){.press-kit-statistics-actions{grid-template-columns:1fr}.press-kit-statistics-actions>.btn{min-height:48px}}
.press-kit-player-dialog-backdrop { position:fixed; inset:0; z-index:120; display:grid; place-items:center; padding:20px; background:rgba(11,17,14,.58); backdrop-filter:blur(5px); }
.press-kit-player-dialog { width:min(620px,100%); max-height:calc(100vh - 40px); overflow:auto; border:1px solid var(--line); border-radius:16px; background:var(--card); box-shadow:0 24px 70px rgba(8,16,12,.28); }
.press-kit-player-dialog > header { display:flex; justify-content:space-between; gap:18px; align-items:start; padding:22px; border-bottom:1px solid var(--line); }
.press-kit-player-dialog > header h2 { margin:4px 0 5px; }
.press-kit-player-dialog > header p { margin:0; color:var(--muted); font-size:12px; }
.press-kit-player-dialog > form { display:grid; gap:16px; padding:22px; }
.press-kit-player-dialog footer { display:flex; justify-content:flex-end; gap:10px; padding-top:4px; }
.press-kit-statistics-dialog { width:min(760px,100%); }
.press-kit-statistics-list { display:grid; gap:8px; }
.press-kit-statistics-list fieldset { min-width:0; margin:0; padding:12px; border:1px solid var(--line); border-radius:10px; background:var(--mist-light); }
.press-kit-statistics-list legend { padding:0 6px; color:var(--ink); font-size:12px; font-weight:850; }
.press-kit-statistics-list legend small { margin-left:5px; color:var(--muted); font-weight:650; }
.press-kit-statistics-fields { display:grid; grid-template-columns:1fr 1fr 1.4fr .7fr .7fr; gap:8px; }
.press-kit-statistics-list label { display:grid; gap:4px; color:var(--muted); font-size:8px; font-weight:800; text-transform:uppercase; letter-spacing:.04em; }
.press-kit-statistics-list input[type="number"] { min-height:38px; }
.press-kit-actions { position:sticky; bottom:16px; z-index:3; padding:14px; border:1px solid var(--line); border-radius:11px; background:color-mix(in srgb,var(--card) 94%,transparent); box-shadow:0 12px 32px rgba(16,24,20,.12); backdrop-filter:blur(12px); }
.press-kit-preview-panel { position:sticky; top:20px; min-width:0; padding:16px; border:1px solid var(--line); border-radius:12px; background:var(--card); box-shadow:0 14px 34px rgba(16,24,20,.09); }
.press-kit-preview-head { display:flex; justify-content:space-between; gap:12px; align-items:center; margin-bottom:14px; }
.press-kit-preview-head > div { display:grid; gap:3px; }
.press-kit-preview-head span { color:var(--green); font-size:9px; font-weight:900; letter-spacing:.09em; }
.press-kit-preview-head b { font-size:12px; }
#press-kit-screen-preview { overflow:auto; max-height:calc(100vh - 150px); padding:12px; background:#dfe5e2; border-radius:12px; }
#press-kit-print-preview { display:none; }
.press-kit-document { color:#171a19; background:#fff; font-family:Inter,Arial,Helvetica,sans-serif; }
.press-kit-document h1,.press-kit-document h2,.press-kit-document h3,.press-kit-document strong,.press-kit-document b { color:#171a19; }
.press-kit-page { position:relative; box-sizing:border-box; width:210mm; min-height:297mm; display:flex; flex-direction:column; gap:6mm; padding:15mm 16mm 13mm; overflow:visible; background:#fff; }
.press-kit-doc-brand { display:flex; align-items:center; gap:4mm; min-height:10mm; }
.press-kit-doc-brand img { width:16mm; height:16mm; object-fit:contain; }
.press-kit-doc-brand b { color:#ff6000; font-size:18pt; }
.press-kit-doc-brand span { color:#171a19; font-size:8.5pt; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.press-kit-cover-block { display:grid; gap:4mm; margin-top:5mm; padding:14mm 11mm; border-radius:7mm; background:#fff4ec; }
.press-kit-cover-block > span,.press-kit-kicker,.press-kit-facts span,.press-kit-address span,.press-kit-particulars span,.press-kit-contact h3 { color:#ff6000!important; font-size:7.5pt; font-weight:900; letter-spacing:.09em; text-transform:uppercase; }
.press-kit-cover-block h1 { margin:0; max-width:160mm; color:#171a19!important; font-size:30pt; line-height:1.04; text-transform:uppercase; }
.press-kit-cover-block h1 span { color:#171a19!important; }
.press-kit-fixture { display:grid; gap:3mm; }
.press-kit-fixture > span { display:flex; gap:5mm; align-items:center; }
.press-kit-flag { display:block; width:12mm; height:12mm; flex:0 0 12mm; object-fit:cover; border-radius:1.4mm; background:#fff; box-shadow:0 0 0 .25mm rgba(23,26,25,.18); }
.press-kit-flag--unknown { background:linear-gradient(135deg,#f6f8f7 0 47%,#d8ddda 47% 53%,#f6f8f7 53% 100%); }
.press-kit-cover-block p { margin:0; color:#454b48; font-size:12pt; }
.press-kit-facts { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:4mm; }
.press-kit-facts > div { display:grid; align-content:start; gap:2mm; min-height:23mm; padding:5mm; border-radius:4mm; background:#f6f8f7; }
.press-kit-facts b,.press-kit-address b { color:#171a19!important; }
.press-kit-facts b { font-size:9.5pt; line-height:1.35; }
.press-kit-address { display:grid; gap:2mm; padding:5mm 6mm; border-radius:4mm; background:#f6f8f7; }
.press-kit-address b { font-size:9pt; line-height:1.35; }
.press-kit-intro { margin-top:auto; max-width:150mm; }
.press-kit-intro b { color:#ff6000; font-size:9pt; }
.press-kit-intro p { margin:3mm 0 0; color:#454b48; font-size:10pt; line-height:1.5; }
.press-kit-page > h2 { margin:0; color:#171a19!important; font-size:25pt; line-height:1.1; }
.press-kit-program { display:grid; gap:1.6mm; }
.press-kit-program > div { display:grid; grid-template-columns:21mm minmax(0,1fr); gap:4mm; align-items:center; padding:3mm 4mm; border-radius:3mm; background:#f6f8f7; }
.press-kit-program > div > b { color:#ff6000!important; font-size:9.5pt; }
.press-kit-program span { display:grid; grid-template-columns:minmax(34mm,.72fr) minmax(0,1.28fr); gap:4mm; align-items:center; }
.press-kit-program strong { color:#171a19!important; font-size:9.5pt; }
.press-kit-program small { color:#454b48!important; font-size:8.3pt; line-height:1.3; }
.press-kit-particulars { display:grid; gap:2mm; padding:4.5mm 5mm; border-radius:4mm; background:#fff4ec; }
.press-kit-particulars p,.press-kit-contact p { margin:0; color:#171a19!important; font-size:9pt; line-height:1.42; }
.press-kit-contact { padding:4mm 5mm; border-radius:4mm; background:#f6f8f7; }
.press-kit-contact h3 { margin:0 0 3mm; }
.press-kit-meetings { display:grid; gap:2mm; }
.press-kit-meetings > h3 { margin:0; color:#ff6000!important; font-size:7.5pt; letter-spacing:.09em; text-transform:uppercase; }
.press-kit-meetings > div { display:grid; grid-template-columns:31mm 1fr 18mm; gap:4mm; align-items:center; padding:2.5mm 4mm; border-radius:3mm; background:#f6f8f7; }
.press-kit-meetings time { color:#454b48!important; font-size:8pt; }
.press-kit-meetings b { color:#171a19!important; font-size:8.5pt; }
.press-kit-meetings strong { color:#ff6000!important; font-size:9pt; text-align:right; }
.press-kit-selection-lead { max-width:150mm; margin:0; color:#454b48!important; font-size:9.5pt; line-height:1.5; }
.press-kit-selection { display:grid; gap:4mm; }
.press-kit-selection-group { display:grid; gap:2mm; }
.press-kit-selection-group h3 { margin:0; color:#ff6000!important; font-size:9pt; letter-spacing:.08em; text-transform:uppercase; }
.press-kit-selection-group > div { display:grid; grid-template-columns:repeat(3,1fr); gap:2mm; }
.press-kit-player-card { min-height:15mm; display:grid; align-content:start; gap:1mm; padding:2.5mm 3mm; border-radius:3mm; background:#f6f8f7; }
.press-kit-player-card > b { color:#171a19!important; font-size:9pt; }
.press-kit-player-card > small { overflow-wrap:anywhere; color:#454b48!important; font-size:6.7pt; line-height:1.25; }
.press-kit-player-card > span { display:flex; gap:2.5mm; margin-top:1mm; color:#171a19!important; font-size:6.5pt; }
.press-kit-player-card em { color:#171a19!important; font-style:normal; font-weight:750; }
.press-kit-selection-group i { color:#707874; font-size:9pt; }
.press-kit-page > footer { display:flex; justify-content:space-between; gap:10mm; margin-top:auto; padding-top:4mm; border-top:.35mm solid #dfe5e2; color:#454b48!important; font-size:7.5pt; }
.press-kit-document.is-compact { width:100%; display:grid; gap:14px; background:transparent; }
.press-kit-document.is-compact .press-kit-page { width:100%; min-height:auto; aspect-ratio:210/297; gap:2.1%; padding:5.5% 6%; box-shadow:0 6px 18px rgba(21,28,24,.12); }
.press-kit-document.is-compact .press-kit-doc-brand { min-height:4%; }
.press-kit-document.is-compact .press-kit-doc-brand img { width:10%; height:7%; }
.press-kit-document.is-compact .press-kit-cover-block { margin-top:2%; padding:6%; gap:2%; }
.press-kit-document.is-compact .press-kit-cover-block h1 { font-size:clamp(15px,2.4vw,27px); }
.press-kit-document.is-compact .press-kit-fixture { gap:2%; }
.press-kit-document.is-compact .press-kit-flag { width:8%; height:auto; aspect-ratio:1; flex-basis:8%; }
.press-kit-document.is-compact .press-kit-cover-block p,.press-kit-document.is-compact .press-kit-intro p { font-size:clamp(7px,.85vw,10px); }
.press-kit-document.is-compact .press-kit-facts > div { min-height:0; padding:5%; }
.press-kit-document.is-compact .press-kit-address { padding:3.5%; }
.press-kit-document.is-compact .press-kit-program { gap:1%; }
.press-kit-document.is-compact .press-kit-program > div { grid-template-columns:16% minmax(0,1fr); gap:3%; padding:3%; }
.press-kit-document.is-compact .press-kit-program span { grid-template-columns:minmax(0,.7fr) minmax(0,1.3fr); gap:4%; }
.press-kit-document.is-compact .press-kit-facts b,.press-kit-document.is-compact .press-kit-program strong,.press-kit-document.is-compact .press-kit-program small,.press-kit-document.is-compact .press-kit-particulars p,.press-kit-document.is-compact .press-kit-contact p { font-size:clamp(6px,.7vw,9px); }
.press-kit-document.is-compact .press-kit-page > h2 { font-size:clamp(17px,2vw,24px); }
.press-kit-document.is-compact .press-kit-selection-group > div { gap:1%; }
.press-kit-document.is-compact .press-kit-player-card { min-height:0; padding:4%; }
.press-kit-document.is-compact .press-kit-player-card > b { font-size:clamp(6px,.7vw,9px); }
.press-kit-document.is-compact .press-kit-player-card > small,.press-kit-document.is-compact .press-kit-player-card > span { font-size:clamp(4px,.5vw,7px); }

@media (max-width:1050px) { .press-kit-builder { grid-template-columns:1fr; } .press-kit-preview-panel { position:static; } #press-kit-screen-preview { max-height:none; } }
@media (max-width:720px) { .press-kit-facts,.press-kit-selection-group > div,.press-kit-selection-inputs { grid-template-columns:1fr 1fr; } .press-kit-meeting-input,.press-kit-statistics-fields { grid-template-columns:1fr; } .press-kit-actions { position:static; } }
.large-avatar { color: #d54e00; background: #e6f1eb; }
.brand-preview { background: var(--preview); }
.theme-contrast-result { display:flex;gap:8px;align-items:center;margin-top:8px;color:var(--muted);font-size:11px; }
.theme-contrast-result b { color:var(--color-success); }
.toast { color: #fff; background: #1f1f1f; border-left: 6px solid var(--green); }

@media (max-width: 1000px) {
  .topbar { padding-right: 28px; }
  .topbar .actions { position: relative; right: auto; top: auto; }
}

@media (max-width: 720px) {
  .sidebar { width: 100%; }
  .sidebar::before, .sidebar::after { display: none; }
  .topbar { min-height: auto; padding: 22px 20px 22px 25px; align-items: flex-start; }
  .topbar::after { opacity: .45; }
  h1 { font-size: 26px; }
}

/* Navigatie, leesbaarheid en persoonlijke voorkeuren */
body { font-size: 15px; line-height: 1.55; }
.sidebar { padding: 19px 16px 16px; }
.sidebar::before, .sidebar::after { display: none; }
.brand-lockup { position: relative; z-index: 1; isolation: isolate; display: grid; justify-items: center; padding: 1px 0 16px; }
.brand-home { width: 100%; border: 0; color: inherit; background: transparent; cursor: pointer; }
.brand-home:hover .organization-brand-logo, .brand-home:focus-visible .organization-brand-logo { filter: brightness(1.05); transform: translateY(-1px); }
.brand-home:focus-visible { outline: 2px solid rgba(255,255,255,.9); outline-offset: 3px; border-radius: 10px; }
.brand-lockup::before { content: ''; position: absolute; z-index: 0; top: -19px; left: -16px; right: -16px; height: 174px; background: radial-gradient(ellipse 92% 78% at 50% 23%, rgba(255,238,227,.4) 0%, rgba(255,181,131,.22) 43%, rgba(255,96,0,0) 80%); pointer-events: none; }
.organization-brand-logo { position: relative; z-index: 1; width: 104px; height: 104px; display: grid; place-items: center; }
.organization-brand-logo img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 15px rgba(92,28,0,.24)); }
.powered-by { position: relative; z-index: 1; margin-top: 5px; color: rgba(255,255,255,.86); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.powered-by b { color: #fff; font-weight: 900; letter-spacing: .12em; }
.nav { gap: 5px; }
.nav button { min-height: 42px; font-family: "Avenir Next", Avenir, Inter, sans-serif; font-size: 14px; font-weight: 600; line-height: 1.3; letter-spacing: .005em; }
.nav .icon { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.nav-group { display: grid; gap: 3px; }
.nav-parent .chevron { margin-left: auto; transition: transform .18s ease; }
.nav-group.open .chevron { transform: rotate(180deg); }
.subnav { display: none; gap: 3px; padding-left: 15px; }
.nav-group.open .subnav { display: grid; }
.subnav button { min-height: 36px; padding: 8px 11px; font-size: 13px; }
.sub-dot { width: 5px; height: 5px; margin: 0 9px 0 4px; border-radius: 50%; background: rgba(255,255,255,.72); }
.subnav button.active .sub-dot { background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.2); }
.brand-motto { position: relative; z-index: 1; display: grid; grid-template-columns: 43px 1fr; gap: 11px; align-items: center; margin-top: auto; padding: 15px 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 10px; background: rgba(31,31,31,.09); }
.brand-motto strong { color: #fff; font-size: 13px; line-height: 1.15; letter-spacing: -.01em; }
.motto-shield { position: relative; width: 40px; height: 44px; display: grid; place-items: center; clip-path: polygon(50% 0,100% 22%,88% 76%,50% 100%,12% 76%,0 22%); background: rgba(255,255,255,.9); }
.motto-shield::before { content: ''; width: 31px; height: 35px; clip-path: inherit; background: var(--green); }
.motto-shield i { position: absolute; width: 18px; height: 21px; clip-path: inherit; border: 1px solid #fff; }
.sidebar-foot { margin-top: 13px; padding: 14px 12px 3px; border: 0; border-radius: 10px; background: rgba(31,31,31,.14); }
.environment-name { display: flex; justify-content: space-between; align-items: baseline; margin-top: 3px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.18); }
.environment-name span { color: rgba(255,255,255,.7); font-size: 11px; }
.sidebar-user { padding: 11px 0 4px; }

h1, h2 { font-family: "Avenir Next", Avenir, Inter, ui-sans-serif, sans-serif; font-weight: 800; letter-spacing: -.022em; }
h1 { margin: 6px 0 6px; font-size: 31px; line-height: 1.12; text-transform: none; }
h2 { font-size: 20px; line-height: 1.2; }
h3 { font-size: 15px; line-height: 1.3; }
.eyebrow { font-size: 12px; letter-spacing: .09em; }
.subtitle { max-width: 720px; font-size: 14px; line-height: 1.5; }
.kpi-label, th { font-size: 12px; line-height: 1.35; }
.field label { font-size: 13px; }
td { font-size: 14px; }
.subline, .hint { line-height: 1.45; }
.type-pill { font-size: 11px; }

.settings-shell { width: 100%; display: grid; grid-template-columns: 248px minmax(0, 1fr); gap: 24px; margin-top: 24px; align-items: start; }
.settings-menu { position: sticky; top: 20px; display: grid; gap: 6px; padding: 10px; box-shadow: none; }
.settings-menu-heading { padding: 10px 11px 12px; border-bottom: 1px solid var(--line); }
.settings-menu-heading span, .settings-menu-heading small { display: block; }
.settings-menu-heading span { font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .07em; }
.settings-menu-heading small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.settings-menu button { width: 100%; display: grid; grid-template-columns: 38px minmax(0,1fr) 18px; gap: 10px; align-items: center; padding: 10px; border: 1px solid transparent; border-radius: 10px; color: var(--ink); background: transparent; text-align: left; }
.settings-menu-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; color: var(--muted); background: var(--mist-light); }
.settings-menu-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.settings-menu-copy { min-width: 0; }
.settings-menu-copy b, .settings-menu-copy small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.settings-menu-copy b { font-size: 12px; }
.settings-menu-copy small { margin-top: 2px; color: var(--muted); font-size: 9px; font-weight: 600; }
.settings-menu-arrow { color: var(--muted); font-size: 13px; transition: transform .18s ease; }
.settings-menu button:hover { border-color: var(--line); background: var(--mist-light); }
.settings-menu button:hover .settings-menu-arrow { transform: translateX(2px); }
.settings-menu button.active { color: #fff; border-color: var(--green); background: var(--green); }
.settings-menu button.active .settings-menu-icon { color: #fff; background: rgba(255,255,255,.14); }
.settings-menu button.active .settings-menu-copy small, .settings-menu button.active .settings-menu-arrow { color: rgba(255,255,255,.74); }
.settings-content { min-width: 0; display: grid; gap: 12px; }
.settings-content-heading { padding: 2px 2px 9px; }
.settings-content-heading > span { color: var(--green-2); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.settings-content-heading h2 { margin-top: 5px; font-size: 24px; }
.settings-content-heading p { max-width: 680px; margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.settings-content .settings-grid { grid-template-columns: minmax(220px,260px) minmax(0,1fr); gap: 16px; }
.settings-content .form-card, .settings-content .team-settings, .app-settings-card { width: 100%; max-width: none; }
.settings-content .profile-photo-card { position: sticky; top: 20px; box-shadow: none; }
.settings-content .form-card { box-shadow: none; }
.app-settings-card { max-width: none; }
.theme-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.theme-choice { position: relative; display: grid !important; grid-template-columns: 54px 1fr; align-items: center; gap: 12px; min-height: 72px; margin: 0 !important; padding: 12px 46px 12px 12px; border: 1px solid var(--line); border-radius: 9px; background: var(--card); cursor: pointer; transition: border-color .18s ease, background .18s ease, box-shadow .18s ease; }
.theme-choice:hover { border-color: var(--mist-darkest); background: var(--mist-light); }
.theme-choice.selected { border: 2px solid var(--green); padding: 11px 45px 11px 11px; background: color-mix(in srgb, var(--green) 9%, var(--card)); box-shadow: 0 0 0 3px color-mix(in srgb, var(--green), transparent 82%); }
.theme-choice.selected::after { content: '✓'; position: absolute; right: 13px; top: 50%; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 13px; font-weight: 900; transform: translateY(-50%); }
.theme-choice input { position: absolute; opacity: 0; pointer-events: none; }
.theme-preview { width: 52px; height: 38px; display: grid; place-items: center; border-radius: 6px; font-size: 18px; }
.theme-copy b, .theme-copy small { display: block; }
.theme-copy small { margin-top: 3px; color: var(--muted); font-size: 11px; font-weight: 550; }
.light-preview { color: #e35600; background: #f2f8f5; border: 1px solid #cae3e1; }
.dark-preview { color: #ff7a2a; background: #16201d; border: 1px solid #34433e; }
.system-preview { color: var(--green); background: linear-gradient(115deg,#f2f8f5 0 49%,#16201d 51% 100%); border: 1px solid var(--line); }
.settings-note { padding: 12px 14px; border-radius: 7px; color: var(--muted); background: var(--mist-light); font-size: 12px; }
.team-environment-settings { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.team-environment-settings > .settings-note-card { grid-column: 1/-1; padding: 16px 18px; box-shadow: none; }
.team-environment-settings > .settings-note-card p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.team-environment-settings-card { min-width: 0; display: grid; gap: 16px; padding: 18px; box-shadow: none; }
.team-environment-settings-card > header { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.team-environment-settings-card > header h2 { margin: 0; font-size: 17px; }
.team-environment-settings-card > header p { margin: 3px 0 0; color: var(--muted); font-size: 11px; }
.team-environment-settings-logo { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--mist-light); font-weight: 800; }
.team-environment-settings-logo img { width: 100%; height: 100%; object-fit: contain; }
.team-environment-member-list { display: grid; gap: 8px; }
.team-environment-member-row { min-width: 0; display: grid; grid-template-columns: 34px minmax(0,1fr) auto; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 9px; background: var(--mist-light); }
.team-environment-member-row :is(b,small) { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.team-environment-member-row b { font-size: 12px; }.team-environment-member-row small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.team-environment-member-row .team-member-remove { padding: 7px 9px; font-size: 10px; }
.team-member-protected { color: var(--muted); font-size: 10px; font-weight: 700; }
.team-environment-add-form { display: grid; gap: 10px; padding-top: 14px; border-top: 1px solid var(--line); }
.team-environment-add-form .field { margin: 0; }.team-environment-add-form .btn { width: 100%; }
.contact-requirement { padding: 13px; border: 1px solid var(--mist-dark); border-radius: 9px; background: var(--mist-light); }
.unknown-contact { display: flex !important; align-items: center; gap: 8px; margin: 9px 0 0 !important; color: var(--muted); font-size: 12px !important; font-weight: 650 !important; cursor: pointer; }
.unknown-contact input { width: 16px !important; height: 16px; margin: 0; accent-color: var(--green); }
.contact-requirement > input:disabled { opacity: .55; background: var(--mist-medium); cursor: not-allowed; }
.spokesperson-picker { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
.spokesperson-option { display: grid !important; grid-template-columns: 18px 34px 1fr; gap: 9px; align-items: center; margin: 0 !important; padding: 10px 11px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); cursor: pointer; }
.spokesperson-option:hover { border-color: var(--mist-darkest); background: var(--mist-light); }
.spokesperson-option.selected { border-color: var(--green); box-shadow: 0 0 0 2px color-mix(in srgb,var(--green),transparent 85%); }
.spokesperson-option input { width: 16px !important; height: 16px; margin: 0; accent-color: var(--green); }
.spokesperson-option span:last-child { min-width: 0; }
.spokesperson-option b { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.spokesperson-option small { display: block; overflow: hidden; color: var(--muted); font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.priority-field { max-width: none; margin-top: 0; }
.journalist-media-options { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 8px; }
.journalist-media-options label { display: flex; align-items: center; gap: 9px; margin: 0; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--mist-light); cursor: pointer; }
.journalist-media-options input { width: 16px; height: 16px; margin: 0; accent-color: var(--green); }
.assignee-summary { display: flex; align-items: center; gap: 9px; }
.assignee-stack { display: flex; padding-left: 5px; }
.avatar-image.stacked, .mini-avatar.stacked { width: 27px; height: 27px; margin-left: -5px; border: 2px solid var(--card); font-size: 9px; }
.assignee-links { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 2px; }
.assignee-links button, .bar-person { padding: 0; border: 0; color: var(--ink); background: transparent; font-weight: 750; text-align: left; }
.assignee-links button:hover { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.assignee-links i { color: var(--muted); font-style: normal; }
.bar-person { font-size: inherit; }
.clickable-bar-row { margin-inline: -7px; padding: 4px 7px; border-radius: 7px; cursor: pointer; }
.clickable-bar-row:hover, .clickable-bar-row:focus-visible { outline: none; background: var(--mist-light); }
.clickable-bar-row:hover .bar-person { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.assignee-chips { flex-wrap: wrap; gap: 5px; }
.assignee-chips > button { display: inline-flex; align-items: center; gap: 5px; padding: 3px 7px 3px 3px; border: 1px solid var(--line); border-radius: 99px; color: var(--ink); background: var(--card); font-size: 11px; font-weight: 750; }
.assignee-chips > button:hover { color: var(--green); border-color: var(--green); background: var(--mist-light); }
.assigned-people { display: grid; gap: 7px; }
.assigned-people > button { width: 100%; display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 7px; padding: 5px 6px; border: 0; border-radius: 6px; color: var(--ink); background: transparent; text-align: left; }
.assigned-people > button:hover { color: var(--green); background: var(--mist-light); }
.assigned-people > button > span:last-child { color: var(--green); }
.closure-banner { display: grid; grid-template-columns: 38px 1fr auto; gap: 12px; align-items: center; margin-top: 17px; padding: 13px 15px; border: 1px solid #afd5d2; border-radius: 9px; background: #e6f1eb; }
.closure-check { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #3f7465; font-weight: 900; }
.closure-banner small { display: block; margin-top: 2px; color: #53645e; }
.btn-reopen { color: #b74600; border-color: #ffc9a8; background: #fff5ee; }
.row-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.row-arrow { color: var(--green); font-size: 18px; font-weight: 900; transition: transform .18s ease; }
tbody tr:hover .row-arrow { transform: translateX(3px); }
.journalist-profile-summary { display: grid; grid-template-columns: minmax(280px,.9fr) minmax(420px,1.3fr); gap: 28px; align-items: center; margin-top: 24px; padding: 24px; border-top: 4px solid var(--green); }
.journalist-profile-identity { display: flex; align-items: center; gap: 16px; }
.mini-avatar.profile, .avatar-image.profile { width: 72px; height: 72px; flex: none; font-size: 19px; }
.profile-kicker { display: block; margin-bottom: 5px; color: var(--green); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.journalist-profile-identity h2 { font-size: 23px; }
.journalist-profile-identity p { margin: 6px 0 0; color: var(--muted); }
.journalist-profile-contact { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px 20px; }
.journalist-profile-contact > div:last-child { grid-column: 1 / -1; }
.journalist-profile-contact span { display: block; margin-bottom: 3px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.journalist-profile-contact b { display: block; overflow-wrap: anywhere; font-size: 13px; }
.journalist-stats { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; margin-top: 14px; }
.journalist-stats .card { position: relative; overflow: hidden; padding: 17px 18px; box-shadow: none; }
.journalist-stats .card::after { content: ''; position: absolute; right: -25px; bottom: -35px; width: 72px; height: 72px; border: 1px solid var(--mist-medium); border-radius: 12px; transform: rotate(45deg); }
.journalist-stats span { display: block; color: var(--muted); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .04em; }
.journalist-stats strong { position: relative; z-index: 1; display: block; margin-top: 7px; color: var(--green); font: 900 25px/1 "Arial Black", "Avenir Next", sans-serif; }
.journalist-stats .stat-text { color: var(--ink); font: 800 16px/1.2 Inter,ui-sans-serif,sans-serif; }
.journalist-form { max-width: 860px; }
.tag-link { font-family: inherit; cursor: pointer; }
.tag-link:hover { color: #fff; border-color: var(--green); background: var(--green); }
.clickable-tag-row { margin-inline: -8px; padding-inline: 8px; border-radius: 7px; cursor: pointer; }
.clickable-tag-row:hover, .clickable-tag-row:focus-visible { outline: none; background: var(--mist-light); }
.tag-name-link { padding: 0; border: 0; color: var(--ink); background: transparent; font: inherit; text-align: left; }
.clickable-tag-row:hover .tag-name-link { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.tag-stats { margin-top: 24px; }
.spokesperson-history { margin-top: 14px; }
.spokesperson-stats .card:first-child { border-top: 3px solid var(--green); }
.spokesperson-edit-form { max-width: 880px; }
.account-status-choice { min-height: 77px; display: grid !important; grid-template-columns: 20px 1fr; gap: 10px; align-items: center; margin: 0 !important; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--mist-light); cursor: pointer; }
.account-status-choice input { width: 17px !important; height: 17px; margin: 0; accent-color: var(--green); }
.account-status-choice b, .account-status-choice small { display: block; }
.account-status-choice small { margin-top: 3px; color: var(--muted); font-weight: 500; }
.admin-warning { padding: 12px 14px; border-left: 4px solid var(--green); border-radius: 0 7px 7px 0; color: var(--muted); background: var(--mist-light); font-size: 12px; }
.team-settings { max-width: 920px; display: grid; gap: 16px; }
.invite-card { margin: 0; }
.invite-card .section-title > div { width: 100%; }
.invite-card .section-title .subtitle { margin-top: 6px; }
.invite-notice { display: grid; grid-template-columns: 36px 1fr; gap: 11px; align-items: center; margin: 3px 0 18px; padding: 12px 14px; border: 1px solid var(--mist-dark); border-radius: 8px; background: var(--mist-light); }
.invite-notice > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); }
.invite-notice b, .invite-notice small { display: block; }
.invite-notice small { margin-top: 2px; color: var(--muted); font-size: 11px; }
.team-overview { padding: 21px; }
.team-overview .panel-head { margin-bottom: 8px; }
.team-overview .subtitle { margin-top: 5px; }
.team-member-list { display: grid; }
.team-member-row { width: 100%; display: grid; grid-template-columns: 38px minmax(0,1fr) auto 24px; gap: 12px; align-items: center; padding: 13px 4px; border: 0; border-top: 1px solid var(--line); color: var(--ink); background: transparent; text-align: left; }
.team-member-row:hover { background: var(--mist-light); }
.team-member-row > span:nth-child(2) { min-width: 0; }
.team-member-row b, .team-member-row small { display: block; }
.team-member-row small { overflow: hidden; margin-top: 2px; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.team-open-count { min-width: 48px; text-align: right; }
.team-open-count b { color: var(--green); font-size: 17px; }
.team-open-count small { font-size: 9px; text-transform: uppercase; }
.pending-invites { display: grid; }
.pending-invite-row { display: grid; grid-template-columns: 36px minmax(0,1fr) auto auto; gap: 12px; align-items: center; padding: 13px 4px; border-top: 1px solid var(--line); }
.pending-invite-row b, .pending-invite-row small { display: block; }
.pending-invite-row small { margin-top: 2px; color: var(--muted); font-size: 11px; }
.invite-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: var(--mist); }
.invite-status { padding: 4px 8px; border-radius: 99px; color: #a84106; background: #fff0e7; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.team-empty { padding: 32px 15px; }
.dashboard-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 18px; }
.dashboard-toolbar-main { min-width: 0; display: flex; align-items: center; gap: 11px; }
.dashboard-report-button.active { color: #fff; border-color: var(--green); background: var(--green); }
.dashboard-filter-button { display: inline-flex; align-items: center; gap: 7px; min-height: 40px; padding-inline: 12px; font-weight: 800; }
.dashboard-filter-button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.dashboard-filter-button.active, .dashboard-edit-button.active { color: #fff; border-color: var(--green); background: var(--green); }
.filter-count { min-width: 20px; height: 20px; display: grid; place-items: center; padding: 0 5px; border-radius: 99px; color: #fff; background: var(--green); font-size: 10px; }
.dashboard-filter-button.active .filter-count { color: var(--green); background: #fff; }
.filter-chevron { margin-left: 2px; color: var(--muted); font-size: 13px; }
.dashboard-filter-button.active .filter-chevron { color: #fff; }
.filter-period-summary { overflow: hidden; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.dashboard-controls { display: grid; gap: 14px; margin-top: 10px; padding: 16px; border-top: 3px solid var(--green); box-shadow: none; }
.dashboard-filter-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding-bottom: 11px; border-bottom: 1px solid var(--line); }
.dashboard-filter-heading b, .dashboard-filter-heading small { display: block; }
.dashboard-filter-heading small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.filter-close { width: 30px; height: 30px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 6px; color: var(--muted); background: transparent; font-size: 23px; line-height: 1; }
.filter-close:hover { color: var(--ink); background: var(--mist-light); }
.dashboard-filter-group { display: flex; flex: 1; flex-wrap: wrap; gap: 9px; }
.dashboard-filter-group label { min-width: 128px; display: grid; gap: 4px; color: var(--muted); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .04em; }
.dashboard-filter-group select, .dashboard-filter-group input { min-height: 38px; padding: 7px 28px 7px 10px; color: var(--ink); background: var(--card); font-size: 12px; font-weight: 650; text-transform: none; letter-spacing: 0; }
.dashboard-control-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.dashboard-edit-button { white-space: nowrap; }
.dashboard-scope { margin-top: 10px; color: var(--muted); font-size: 11px; text-align: right; }
.dashboard-kpis { grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); }
.clickable-kpi { width: 100%; display: block; color: var(--ink); text-align: left; cursor: pointer; }
.clickable-kpi:hover, .clickable-kpi:focus-visible { outline: none; border-color: var(--green); box-shadow: 0 9px 25px rgba(255,96,0,.11); transform: translateY(-2px); }
.clickable-kpi small { display: block; min-height: 19px; }
.kpi-link { display: block; margin-top: 10px; color: var(--green); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .035em; }
.dashboard-customizer { display: grid; grid-template-columns: minmax(190px,.55fr) 1.45fr; gap: 18px; align-items: center; margin-top: 12px; padding: 18px; border-left: 5px solid var(--green); }
.dashboard-customizer .subtitle { margin-top: 6px; }
.widget-options { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px; }
.widget-option { align-items: center; gap: 7px; padding: 10px 11px; border: 1px solid var(--line); border-radius: 7px; background: var(--mist-light); }
.widget-options label { min-width: 0; display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; cursor: pointer; }
.widget-options input { width: 15px; height: 15px; margin: 0; accent-color: var(--green); }
.dashboard-customizer-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 11px; }
.dashboard-widget-grid { display: grid; grid-template-columns: repeat(12,minmax(0,1fr)); grid-auto-rows: 96px; gap: 16px; margin-top: 16px; align-items: stretch; }
.dashboard-widget { min-width: 0; min-height: 0; grid-column: span var(--widget-columns,6); grid-row: span var(--widget-rows,3); contain: layout style; }
.dashboard-widget > * { height: 100%; margin-top: 0; }
.dashboard-widget > .panel, .dashboard-widget > .table-card { min-height: 0; overflow: auto; }
.dashboard-widget > .dashboard-trend { display: flex; flex-direction: column; overflow: hidden; }
.dashboard-trend .analytics-line-chart { min-height: 0; flex: 1; }
.dashboard-trend .line-chart-scroll { min-height: 0; height: 100%; }
.dashboard-trend .line-chart-scroll svg { min-height: 250px; }
.dashboard-widget.is-editing { position: relative; padding: 7px; border: 2px solid color-mix(in srgb,var(--green) 42%,var(--line)); border-radius: 22px; background: color-mix(in srgb,var(--green) 4%,transparent); transition: border-color .2s ease,box-shadow .2s ease; }
.dashboard-widget.dragging { opacity: .96; border-color: var(--green); box-shadow: 0 24px 58px rgba(16,24,20,.26),0 0 0 5px color-mix(in srgb,var(--green) 12%,transparent); cursor: grabbing; will-change: transform; }
.dashboard-widget-placeholder { min-height: 148px; border: 2px dashed color-mix(in srgb,var(--green) 64%,var(--line)); background: color-mix(in srgb,var(--green) 10%,transparent); box-shadow: inset 0 0 0 5px color-mix(in srgb,var(--green) 5%,transparent); }
.dashboard-widget-placeholder > * { display: none; }
.dashboard-widget.is-resizing { z-index: 9; cursor: nwse-resize; border-color: var(--green); box-shadow: 0 18px 45px rgba(26,35,31,.2),0 0 0 5px color-mix(in srgb,var(--green) 10%,transparent); will-change: width,height; }
body.dashboard-widget-interacting { cursor: grabbing; user-select: none; }
.widget-drag-handle { position: absolute; z-index: 6; top: 10px; left: 50%; width: auto; height: auto; padding: 3px 10px 6px; border: 0; border-radius: 99px; color: var(--muted); background: color-mix(in srgb,var(--card) 90%,transparent); transform: translateX(-50%); box-shadow: 0 2px 9px rgba(0,0,0,.08); font-size: 13px; letter-spacing: 2px; line-height: 1; cursor: grab; touch-action: none; }
.widget-drag-handle:hover, .widget-drag-handle:focus-visible { color: var(--ink); outline: none; box-shadow: 0 0 0 4px color-mix(in srgb,var(--green) 14%,transparent),0 3px 11px rgba(0,0,0,.12); }
.widget-drag-handle:active { cursor: grabbing; }
.widget-resize-handle { position: absolute; z-index: 5; right: -8px; bottom: -8px; width: 48px; height: 48px; padding: 0; border: 1px solid color-mix(in srgb,var(--line) 70%,transparent); border-radius: 50%; background: color-mix(in srgb,var(--card) 78%,transparent); box-shadow: 0 8px 22px rgba(16,24,20,.2); backdrop-filter: blur(13px) saturate(150%); cursor: nwse-resize; touch-action: none; }
.widget-resize-handle span { width: 21px; height: 21px; display: block; margin: 10px; border-right: 4px solid var(--green); border-bottom: 4px solid var(--green); border-radius: 0 0 13px; }
.widget-resize-handle:hover, .widget-resize-handle:focus-visible { outline: none; box-shadow: 0 0 0 5px color-mix(in srgb,var(--green) 15%,transparent),0 9px 24px rgba(16,24,20,.24); transform: scale(1.05); }
.dashboard-widget-compact .sentiment-widget .subtitle, .dashboard-widget-compact .sentiment-widget .text-link, .dashboard-widget-compact .sentiment-summary, .dashboard-widget-compact .sentiment-unreviewed { display: none; }
.dashboard-widget-compact .sentiment-widget-content { display: grid; grid-template-columns: 1fr; justify-items: center; }
.dashboard-widget-compact .sentiment-donut { width: min(112px,80%); }
.sentiment-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.sentiment-widget-content { display: grid; grid-template-columns: 122px minmax(0,1fr); gap: 17px; align-items: center; }
.sentiment-donut { width: 122px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(#259c68 0 var(--positive-end),#1596a3 var(--positive-end) var(--neutral-end),#d64a3a var(--neutral-end) var(--negative-end),var(--mist-darkest) var(--negative-end) 360deg); }
.sentiment-donut::before { content: ''; grid-area: 1/1; width: 72%; aspect-ratio: 1; border-radius: 50%; background: var(--card); }
.sentiment-donut > span { z-index: 1; grid-area: 1/1; text-align: center; }
.sentiment-donut strong, .sentiment-donut small { display: block; }
.sentiment-donut strong { font: 800 24px/1 Georgia,serif; }
.sentiment-donut small { margin-top: 3px; color: var(--muted); font-size: 9px; text-transform: uppercase; }
.sentiment-stat { padding: 11px 12px; border: 1px solid var(--line); border-radius: 9px; background: var(--mist-light); }
.sentiment-stat span, .sentiment-stat strong { display: block; }
.sentiment-stat span { color: var(--muted); font-size: 10px; font-weight: 850; text-transform: uppercase; }
.sentiment-stat strong { margin-top: 5px; font: 800 23px/1 Georgia,serif; }
.sentiment-stat.positief strong { color: #18794e; }
.sentiment-stat.neutraal strong { color: #087e8b; }
.sentiment-stat.negatief strong { color: var(--red); }
.sentiment-unreviewed { display: block; margin-top: 11px; color: var(--muted); }
.text-link { padding: 0; border: 0; color: var(--green-2); background: transparent; font-weight: 800; }
.sentiment-pill { display: inline-flex; align-items: center; padding: 4px 8px; border: 1px solid var(--line); border-radius: 99px; font-size: 10px; font-weight: 850; white-space: nowrap; }
.sentiment-pill.positief { color: #11643f; background: #e8f7ef; border-color: #b9dfc9; }
.sentiment-pill.neutraal { color: #086977; background: #e5f7f8; border-color: #b8e1e4; }
.sentiment-pill.negatief { color: #9b241c; background: #fff0ee; border-color: #efc8c3; }
.sentiment-pill.niet-beoordeeld { color: var(--muted); background: var(--mist-light); }
.dashboard-widget > .dashboard-command-widget,
.dashboard-widget > .dashboard-volume-widget,
.dashboard-widget > .dashboard-landscape-widget,
.dashboard-widget > .dashboard-topics-widget,
.dashboard-widget > .dashboard-handling-widget,
.dashboard-widget > .dashboard-workload-widget,
.dashboard-widget > .dashboard-sentiment-widget { overflow: hidden; padding: 20px; }
.dashboard-widget .panel-head { margin-bottom: 14px; }
.dashboard-widget .panel-head h2 { margin-top: 2px; }
.dashboard-widget-kicker { display: block; color: var(--green-2); font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.dashboard-action-summary { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px; }
.dashboard-action-summary button { min-width: 0; padding: 10px 11px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: var(--mist-light); text-align: left; }
.dashboard-action-summary span, .dashboard-action-summary strong { display: block; }
.dashboard-action-summary span { overflow: hidden; color: var(--muted); font-size: 9px; font-weight: 800; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.dashboard-action-summary strong { margin-top: 4px; font: 800 23px/1 Georgia,serif; }
.dashboard-action-summary strong.danger { color: var(--red); }
.dashboard-action-list { min-height: 0; margin-top: 10px; overflow: auto; }
.dashboard-action-row { width: 100%; display: grid; grid-template-columns: 8px minmax(0,1fr) auto; gap: 10px; align-items: center; padding: 9px 3px; border: 0; border-top: 1px solid var(--line); color: var(--ink); background: transparent; text-align: left; }
.dashboard-action-row:hover { color: var(--green-2); }
.dashboard-action-row b, .dashboard-action-row small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dashboard-action-row b { font-size: 12px; }
.dashboard-action-row small, .dashboard-action-row time { margin-top: 2px; color: var(--muted); font-size: 10px; }
.dashboard-action-state { width: 7px; height: 7px; border-radius: 50%; background: var(--color-primary-action); box-shadow: 0 0 0 4px color-mix(in srgb,var(--color-primary-action) 12%,transparent); }
.dashboard-action-state.overdue { background: var(--red); box-shadow: 0 0 0 4px color-mix(in srgb,var(--red) 12%,transparent); }
.dashboard-hero-metric { display: grid; grid-template-columns: auto 1fr; gap: 1px 9px; align-items: end; }
.dashboard-hero-metric strong { grid-row: span 2; font: 800 38px/.9 Georgia,serif; }
.dashboard-hero-metric span { color: var(--ink); font-size: 11px; font-weight: 800; }
.dashboard-hero-metric small { color: var(--muted); font-size: 10px; }
.dashboard-sparkline { width: 100%; height: 92px; margin-top: 9px; overflow: visible; }
.dashboard-sparkline polyline { fill: none; stroke: url(#dashboard-line-gradient); stroke: var(--green-2); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.dashboard-sparkline circle { fill: var(--card); stroke: var(--green-2); stroke-width: 2; }
.dashboard-volume-split { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 7px; margin-top: 5px; }
.dashboard-volume-split span { padding: 8px; border-radius: 9px; color: var(--muted); background: var(--mist-light); font-size: 9px; }
.dashboard-volume-split b { display: block; margin-bottom: 2px; color: var(--ink); font-size: 15px; }
.dashboard-leader-strip { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9px; }
.dashboard-insight-leader { min-width: 0; padding: 11px 12px; border: 1px solid var(--line); border-radius: 11px; background: linear-gradient(145deg,var(--mist-light),color-mix(in srgb,var(--card) 88%,var(--mist))); }
.dashboard-insight-leader span, .dashboard-insight-leader b, .dashboard-insight-leader small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dashboard-insight-leader span { color: var(--muted); font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .04em; }
.dashboard-insight-leader b { margin-top: 5px; font-size: 13px; }
.dashboard-insight-leader small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.dashboard-landscape-details { min-height: 0; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; margin-top: 14px; opacity: 1; transform: translateY(0); transition: opacity .22s ease,transform .22s ease; }
.dashboard-landscape-widget, .dashboard-workload-widget { display: flex; flex-direction: column; }
.dashboard-landscape-details, .dashboard-workload-list { flex: 1; overflow: auto; overscroll-behavior: contain; }
.dashboard-landscape-details h3 { margin-bottom: 5px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.dashboard-type-section { display: none; }
.dashboard-ranking { min-width: 0; }
.dashboard-rank-row { width: 100%; display: grid; grid-template-columns: 20px minmax(0,1fr) auto; gap: 7px; align-items: center; padding: 6px 0; border: 0; border-top: 1px solid var(--line); color: var(--ink); background: transparent; text-align: left; }
.dashboard-rank-row:hover b { color: var(--green-2); }
.dashboard-rank-number { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 7px; color: var(--muted); background: var(--mist-light); font-size: 9px; font-weight: 850; }
.dashboard-rank-copy { min-width: 0; }
.dashboard-rank-copy b, .dashboard-rank-copy small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dashboard-rank-copy b { font-size: 11px; }
.dashboard-rank-copy small { margin-top: 2px; color: var(--muted); font-size: 8px; }
.dashboard-rank-row > strong { font-size: 11px; }
.dashboard-rank-bar { height: 3px; display: block; margin-top: 4px; overflow: hidden; border-radius: 99px; background: var(--mist-darkest); }
.dashboard-rank-bar i { height: 100%; display: block; border-radius: inherit; background: var(--color-primary-action); }
.dashboard-topics-widget > .dashboard-insight-leader { margin-bottom: 7px; }
.dashboard-topic-followup { margin-top: 8px; padding: 0; border: 0; color: var(--green-2); background: transparent; font-size: 10px; font-weight: 850; }
.dashboard-metric-pairs { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; margin-top: 18px; }
.dashboard-metric-pairs span { padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: var(--mist-light); }
.dashboard-metric-pairs b, .dashboard-metric-pairs small { display: block; }
.dashboard-metric-pairs b { font: 800 20px/1 Georgia,serif; }
.dashboard-metric-pairs small { margin-top: 4px; color: var(--muted); font-size: 9px; }
.dashboard-workload-list { min-height: 0; overflow: auto; }
.dashboard-workload-list > button { width: 100%; display: grid; grid-template-columns: minmax(82px,.8fr) 1fr 24px; gap: 8px; align-items: center; padding: 7px 0; border: 0; border-top: 1px solid var(--line); color: var(--ink); background: transparent; text-align: left; }
.dashboard-workload-list > button > span { min-width: 0; display: flex; align-items: center; gap: 6px; }
.dashboard-workload-list > button b { overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.dashboard-workload-list > button i { height: 5px; overflow: hidden; border-radius: 99px; background: var(--mist-darkest); }
.dashboard-workload-list > button em { height: 100%; display: block; border-radius: inherit; background: var(--color-primary-action); }
.dashboard-workload-list > button strong { font-size: 11px; text-align: right; }
.dashboard-workload-list > button small { grid-column: 2/4; margin-top: -7px; color: var(--muted); font-size: 8px; }
.dashboard-method-note { display: block; margin-top: 4px; color: var(--muted); font-size: 8px; }
.dashboard-widget-empty { padding: 16px 0; color: var(--muted); font-size: 11px; }
.dashboard-density-compact .panel-head .subtitle,
.dashboard-density-compact .panel-head .text-link,
.dashboard-density-compact .dashboard-action-list,
.dashboard-density-compact .dashboard-volume-split,
.dashboard-density-compact .dashboard-landscape-details,
.dashboard-density-compact .dashboard-method-note,
.dashboard-density-compact .dashboard-topic-followup,
.dashboard-density-compact .dashboard-metric-pairs,
.dashboard-density-compact .dashboard-sentiment-widget .subtitle,
.dashboard-density-compact .dashboard-sentiment-widget .text-link,
.dashboard-density-compact .dashboard-sentiment-widget .sentiment-summary,
.dashboard-density-compact .dashboard-sentiment-widget .sentiment-unreviewed { display: none; }
.dashboard-density-compact .dashboard-action-summary { grid-template-columns: repeat(2,1fr); }
.dashboard-density-compact .dashboard-action-summary button:nth-child(n+3) { display: none; }
.dashboard-volume-widget { display: flex; flex-direction: column; }
.dashboard-volume-widget .dashboard-sparkline { min-height: 80px; flex: 1; }
.dashboard-density-compact .dashboard-sparkline { height: auto; }
.dashboard-density-compact .dashboard-leader-strip { grid-template-columns: 1fr; }
.dashboard-density-compact .dashboard-leader-strip .dashboard-insight-leader:nth-child(n+2) { display: none; }
.dashboard-density-compact .dashboard-topics-widget .dashboard-ranking { display: none; }
.dashboard-density-compact .dashboard-sentiment-widget .sentiment-widget-content { grid-template-columns: 1fr; justify-items: center; }
.dashboard-density-compact .dashboard-sentiment-widget .sentiment-donut { width: min(154px,72%); }
.dashboard-density-medium .dashboard-action-list .dashboard-action-row:nth-child(n+3),
.dashboard-density-medium .dashboard-ranking .dashboard-rank-row:nth-child(n+3),
.dashboard-density-expanded .dashboard-ranking .dashboard-rank-row:nth-child(n+5) { display: none; }
.dashboard-density-medium .dashboard-landscape-details { display: none; }
.dashboard-density-medium .dashboard-rank-copy small, .dashboard-density-medium .dashboard-rank-bar { display: none; }
.dashboard-density-medium .dashboard-topics-widget .dashboard-rank-row:nth-child(-n+5) { display: grid; }
.dashboard-density-medium .dashboard-leader-strip { gap: 6px; }
.dashboard-density-medium .dashboard-landscape-widget .dashboard-leader-strip { grid-template-columns: 1fr; }
.dashboard-density-medium .dashboard-insight-leader { padding: 8px; }
.dashboard-density-medium .dashboard-type-section { display: none; }
.dashboard-density-medium .dashboard-sentiment-widget .sentiment-summary,
.dashboard-density-medium .dashboard-sentiment-widget .sentiment-unreviewed { display: none; }
.dashboard-density-medium .dashboard-sentiment-widget .sentiment-widget-content { grid-template-columns: 1fr; justify-items: center; }
.dashboard-density-medium .dashboard-sentiment-widget .sentiment-donut { width: min(150px,72%); }
.dashboard-density-expanded .dashboard-landscape-details { grid-template-columns: repeat(2,minmax(0,1fr)); }
.dashboard-density-expanded .dashboard-type-section { display: block; }
.dashboard-density-full .dashboard-landscape-details { grid-template-columns: repeat(4,minmax(0,1fr)); }
.dashboard-density-full .dashboard-type-section { display: block; }
.dashboard-widget.is-editing { transition: border-color .2s ease,box-shadow .2s ease,background-color .2s ease; }
.dashboard-widget.is-editing > *:not(.widget-drag-handle):not(.widget-resize-handle) { transition: opacity .18s ease,filter .18s ease; }
.dashboard-widget.is-resizing > *:not(.widget-drag-handle):not(.widget-resize-handle) { opacity: .88; filter: saturate(.92); }
.widget-drag-handle { display: flex; gap: 3px; align-items: center; justify-content: center; padding: 8px 12px; }
.widget-drag-handle span { width: 4px; height: 4px; display: block; border-radius: 50%; background: currentColor; }
.dashboard-widget-placeholder { animation: dashboard-placeholder-pulse 1.15s ease-in-out infinite alternate; }
@keyframes dashboard-placeholder-pulse { from { opacity:.58; transform:scale(.992); } to { opacity:1; transform:scale(1); } }
@media (prefers-reduced-motion: reduce) { .dashboard-widget-placeholder { animation:none; } .dashboard-landscape-details, .dashboard-widget.is-editing, .dashboard-widget.is-editing > * { transition:none !important; } }
@page { size:A4 portrait; margin:0; }
@media print {
  body.printing-press-kit { background:#fff !important; }
  body.printing-press-kit #app > .shell { display:block !important; }
  body.printing-press-kit #app > .shell > aside { display:none !important; }
  body.printing-press-kit #app > .shell > main { display:block !important; width:auto !important; max-width:none !important; padding:0 !important; }
  body.printing-press-kit #app > .shell > main > :not(#press-kit-print-preview) { display:none !important; }
  body.printing-press-kit #press-kit-print-preview { display:block !important; }
  body.printing-press-kit .press-kit-document { display:block; }
  body.printing-press-kit .press-kit-page { height:auto; min-height:297mm; overflow:visible; break-after:page; page-break-after:always; }
  body.printing-press-kit .press-kit-cover-block,
  body.printing-press-kit .press-kit-facts > div,
  body.printing-press-kit .press-kit-address,
  body.printing-press-kit .press-kit-program > div,
  body.printing-press-kit .press-kit-meetings > div,
  body.printing-press-kit .press-kit-contact,
  body.printing-press-kit .press-kit-player-card,
  body.printing-press-kit .press-kit-page > footer { break-inside:avoid; page-break-inside:avoid; }
  body.printing-press-kit .press-kit-page > h2,
  body.printing-press-kit .press-kit-selection-group > h3,
  body.printing-press-kit .press-kit-meetings > h3 { break-after:avoid; page-break-after:avoid; }
  body.printing-press-kit .press-kit-page:last-child { break-after:auto; page-break-after:auto; }
}
.dashboard-report-builder { margin-top: 12px; padding: 18px; border-top: 3px solid var(--green-2); }
.dashboard-report-controls { display: grid; grid-template-columns: minmax(220px,1fr) minmax(180px,.45fr) auto auto; gap: 10px; align-items: end; }
.dashboard-report-controls label { display: grid; gap: 5px; color: var(--muted); font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .05em; }
.dashboard-report-controls select { min-height: 39px; color: var(--ink); background: var(--card); }
.dashboard-report-period-controls { display: flex; flex-wrap: wrap; gap: 10px; align-items: end; margin-top: 14px; padding: 13px; border: 1px solid var(--line); border-radius: 10px; background: var(--mist-light); }
.dashboard-report-period-controls label { min-width: 180px; display: grid; gap: 5px; color: var(--muted); font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .05em; }
.dashboard-report-period-controls select, .dashboard-report-period-controls input { min-height: 39px; color: var(--ink); background: var(--card); font-size: 12px; text-transform: none; letter-spacing: 0; }
.dashboard-report-period-controls > small { flex: 1 1 230px; align-self: center; color: var(--muted); font-size: 9px; line-height: 1.45; }
.dashboard-time-controls .dashboard-filter-group { grid-template-columns: repeat(3,minmax(170px,240px)); }
.dashboard-report-section-picker { margin-top: 16px; padding: 14px; border: 1px solid var(--line); border-radius: 11px; background: var(--mist-light); }
.dashboard-report-section-picker legend { padding: 0 7px; color: var(--ink); font-size: 11px; font-weight: 850; }
.dashboard-report-section-picker legend small { margin-left: 7px; color: var(--muted); font-weight: 650; }
.dashboard-report-section-picker > div { display: flex; flex-wrap: wrap; gap: 7px; }
.dashboard-report-section-option { min-height: 34px; display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 9px; color: var(--ink); background: var(--card); font-size: 10px; font-weight: 750; cursor: pointer; }
.dashboard-report-section-option:has(input:checked) { border-color: color-mix(in srgb,var(--green-2) 55%,var(--line)); background: color-mix(in srgb,var(--green-2) 9%,var(--card)); }
.dashboard-report-section-option input { width: 15px; height: 15px; accent-color: var(--green-2); }
.dashboard-report-sheet { margin-top: 18px; padding: 28px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: var(--card); box-shadow: 0 14px 36px rgba(16,24,20,.08); }
.dashboard-report-sheet > header { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 2px solid var(--ink); }
.dashboard-report-sheet > header span { color: var(--green-2); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.dashboard-report-sheet > header h2 { margin-top: 5px; font-size: 25px; }
.dashboard-report-sheet > header p, .dashboard-report-sheet > header small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; }
.dashboard-report-sheet > header > div:last-child { text-align: right; }
.dashboard-report-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 18px; }
.dashboard-report-kpis div { padding: 13px; border-radius: 9px; background: var(--mist-light); }
.dashboard-report-kpis span, .dashboard-report-kpis b { display: block; }
.dashboard-report-kpis span { color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.dashboard-report-kpis b { margin-top: 6px; font: 800 24px/1 Georgia,serif; }
.dashboard-report-chart { height: 115px; margin: 13px 0 5px; overflow: hidden; }
.dashboard-report-chart .dashboard-sparkline { height: 110px; margin: 0; }
.dashboard-report-blocks { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-top: 18px; }
.dashboard-report-block { min-width: 0; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: color-mix(in srgb,var(--mist-light) 72%,var(--card)); }
.dashboard-report-block-wide { grid-column: 1/-1; }
.dashboard-report-block h3 { font-size: 11px; }
.dashboard-report-block ol { margin: 8px 0 0; padding: 0; list-style: none; }
.dashboard-report-block li { display: flex; justify-content: space-between; gap: 8px; padding: 6px 0; border-top: 1px solid var(--line); font-size: 10px; }
.dashboard-report-sentence { margin-top: 7px; color: var(--muted); font-size: 10px; line-height: 1.55; }
.dashboard-report-method { display: block; margin-top: 8px; color: var(--muted); font-size: 8px; line-height: 1.45; }
.dashboard-report-mini-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-top: 9px; }
.dashboard-report-mini-kpis span { padding: 8px; border-radius: 8px; background: var(--card); }
.dashboard-report-mini-kpis b, .dashboard-report-mini-kpis small { display: block; }
.dashboard-report-mini-kpis b { font: 800 16px/1 Georgia,serif; }
.dashboard-report-mini-kpis small { margin-top: 4px; color: var(--muted); font-size: 8px; }
.dashboard-report-empty { grid-column: 1/-1; padding: 24px; color: var(--muted); border: 1px dashed var(--line); border-radius: 10px; text-align: center; }
.dashboard-report-callout { margin-top: 16px; padding: 14px; border-left: 4px solid var(--green-2); background: var(--mist-light); }
.dashboard-report-callout h3, .dashboard-report-columns h3, .dashboard-report-foot h3 { font-size: 11px; }
.dashboard-report-callout p, .dashboard-report-foot p { margin-top: 4px; color: var(--muted); font-size: 10px; }
.dashboard-report-columns { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; margin-top: 18px; }
.dashboard-report-columns ol { margin: 8px 0 0; padding: 0; list-style: none; }
.dashboard-report-columns li { display: flex; justify-content: space-between; gap: 8px; padding: 6px 0; border-top: 1px solid var(--line); font-size: 10px; }
.dashboard-report-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; padding-top: 15px; border-top: 1px solid var(--line); }
@media print {
  body * { visibility: hidden !important; }
  .dashboard-report-sheet, .dashboard-report-sheet * { visibility: visible !important; }
  .dashboard-report-sheet { position: absolute; inset: 0; width: 100%; margin: 0; padding: 18mm; border: 0; box-shadow: none; }
  @page { size: A4 landscape; margin: 0; }
}
@media (max-width: 900px) {
  .dashboard-report-controls { grid-template-columns: 1fr 1fr; }
  .dashboard-report-blocks { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .dashboard-time-controls .dashboard-filter-group { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .dashboard-report-controls, .dashboard-report-blocks, .dashboard-report-kpis { grid-template-columns: 1fr; }
  .dashboard-report-period-controls { display: grid; }
  .dashboard-report-period-controls label { min-width: 0; }
  .dashboard-report-sheet > header { display: grid; }
  .dashboard-report-sheet > header > div:last-child { text-align: left; }
}
.sentiment-summary-card small { display: block; margin-top: 5px; color: var(--muted); }
.sentiment-fill.positief { background: #259c68; }
.sentiment-fill.neutraal { background: #1596a3; }
.sentiment-fill.negatief { background: #d64a3a; }
.sentiment-fill.niet-beoordeeld { background: var(--mist-darkest); }
.analytics-sentiment-layout { display: grid; grid-template-columns: 180px minmax(0,1fr); gap: 28px; align-items: center; }
.analytics-sentiment-donut { width: 170px; }
.dashboard-trend, .analytics-chart-card { margin-top: 16px; }
.analytics-chart { position: relative; min-height: 245px; display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 8px; padding-top: 7px; }
.chart-scale { height: 190px; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; padding: 0 4px 19px 0; color: var(--muted); font-size: 9px; }
.chart-scroll { min-width: 0; overflow-x: auto; padding-bottom: 4px; }
.chart-columns { min-width: calc(var(--columns) * 54px); height: 205px; display: grid; grid-template-columns: repeat(var(--columns),minmax(42px,1fr)); gap: 7px; align-items: end; padding: 0 3px; border-bottom: 1px solid var(--line); background: repeating-linear-gradient(to bottom,transparent 0,transparent 46px,var(--mist-medium) 47px,transparent 48px); }
.chart-column { height: 100%; display: grid; grid-template-rows: 19px 1fr 27px; gap: 3px; align-items: end; text-align: center; }
.chart-value { color: var(--ink); font-size: 9px; font-weight: 850; }
.chart-bar-track { height: 153px; display: flex; align-items: flex-end; justify-content: center; }
.chart-bar { width: min(28px,66%); display: block; border: 1px solid color-mix(in srgb,var(--color-primary-action),#000 16%); border-bottom: 0; border-radius: 5px 5px 0 0; background: var(--color-primary-action); transition: height .2s ease; }
.chart-column small { align-self: start; overflow: hidden; color: var(--muted); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.analytics-chart.dense .chart-columns { gap: 4px; }
.analytics-chart.dense .chart-value { display: none; }
.analytics-chart.dense .chart-bar { width: min(20px,72%); }
.analytics-line-chart { min-height: 250px; display: block; padding-top: 0; }
.line-chart-scroll { width: 100%; overflow-x: auto; }
.line-chart-scroll svg { display: block; width: 100%; min-width: 620px; height: 250px; overflow: visible; }
.line-grid { stroke: var(--mist-medium); stroke-width: 1; }
.line-path { fill: none; stroke: var(--green); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.line-point { fill: var(--card); stroke: var(--green); stroke-width: 2.4; }
.line-y-label, .line-x-label { fill: var(--muted); font: 9px Inter,ui-sans-serif,sans-serif; }
.team-trend { margin-top: 7px; border-top: 1px solid var(--line); }
.team-trend-axis { display: grid; grid-template-columns: minmax(205px,.72fr) 1fr 1fr 52px; gap: 12px; align-items: end; padding: 10px 5px 7px; color: var(--muted); }
.team-trend-axis small:nth-child(2) { text-align: left; }
.team-trend-axis small:nth-child(3) { text-align: right; }
.team-trend-axis b { font-size: 9px; text-align: right; text-transform: uppercase; letter-spacing: .04em; }
.team-trend-row { display: grid; grid-template-columns: minmax(205px,.72fr) minmax(360px,1fr) 52px; gap: 12px; align-items: center; min-height: 84px; padding: 4px 5px; border-top: 1px solid var(--line); }
.team-trend-row > strong { color: var(--green); font-size: 18px; text-align: right; }
.team-trend-person { min-width: 0; display: flex; align-items: center; gap: 10px; padding: 5px; border: 0; border-radius: 7px; color: var(--ink); background: transparent; text-align: left; }
.team-trend-person:hover { background: var(--mist-light); }
.team-trend-person > span:last-child { min-width: 0; }
.team-trend-person b, .team-trend-person small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.team-trend-person small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.team-trend-row svg { width: 100%; height: 72px; }
.team-line-base { stroke: var(--mist-medium); stroke-width: 1; }
.team-line-path { fill: none; stroke: var(--green); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.team-line-point { fill: var(--card); stroke: var(--green); stroke-width: 2.2; }
.team-performance-row { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 3px; border: 0; border-top: 1px solid var(--line); color: var(--ink); background: transparent; text-align: left; }
.team-performance-row:hover { background: var(--mist-light); }
.team-performance-row b, .team-performance-row small { display: block; }
.team-performance-row small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.team-performance-row strong { color: var(--green); font-size: 13px; white-space: nowrap; }
.clickable-list-item { cursor: pointer; }
.clickable-list-item:hover { background: var(--mist-light); }
.dashboard-source-note { margin-top: 14px; color: var(--muted); font-size: 10px; text-align: right; }
.analytics-back { margin-bottom: 0; }
.analytics-summary-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; margin-top: 17px; }
.analytics-summary-grid .card { position: relative; overflow: hidden; padding: 17px 18px; box-shadow: none; }
.analytics-summary-grid .card::after { content: ''; position: absolute; right: -27px; bottom: -38px; width: 74px; height: 74px; border: 1px solid var(--mist-medium); border-radius: 13px; transform: rotate(45deg); }
.analytics-summary-grid span { display: block; color: var(--muted); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .045em; }
.analytics-summary-grid strong { position: relative; z-index: 1; display: block; margin-top: 7px; color: var(--green); font: 900 25px/1 "Arial Black","Avenir Next",sans-serif; }
.analytics-summary-grid .summary-time { font-size: 21px; }
.analytics-summary-grid .deadline-danger strong { color: var(--red); }
.analytics-table { margin-top: 16px; }
.analytics-split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; margin-top: 16px; }
.analytics-bar-row { grid-template-columns: minmax(145px,1.4fr) 1fr 34px; }

html[data-theme="dark"] { color-scheme:dark;--color-background:#10131b;--color-surface:#171d29;--color-text:#f8f9fc;--color-text-muted:#aeb2be;--color-border:#34394a;--color-focus:#2c9fa3;--ink:var(--color-text);--muted:var(--color-text-muted);--paper:var(--color-background);--card:var(--color-surface);--line:var(--color-border);--mint:color-mix(in srgb,var(--color-communication-accent) 12%,var(--color-surface));--mist-light:#1b202c;--mist:#222837;--mist-medium:#2b3242;--mist-dark:#343c4f;--mist-darkest:#485169;--shadow:0 18px 46px rgba(0,0,0,.24); }
html[data-theme="dark"] body { color:var(--ink);background:radial-gradient(circle at 10% 0,#1f2330 0,var(--color-background) 35%); }
html[data-theme="dark"] .topbar { border-color:var(--line);background:radial-gradient(circle at 92% 14%,color-mix(in srgb,var(--color-communication-accent) 13%,transparent),transparent 13rem),linear-gradient(118deg,var(--card) 0%,var(--card) 70%,color-mix(in srgb,var(--color-communication-accent) 5%,var(--card)) 100%); }
html[data-theme="dark"] .topbar::after { border-color: rgba(255,96,0,.2); }
html[data-theme="dark"] .card { color: var(--ink); background: var(--card); }
html[data-theme="dark"] th { color: #c6d1cd; background: #23312c; }
html[data-theme="dark"] td { border-color: #2b3934; }
html[data-theme="dark"] tbody tr:hover { background: #1c2824; }
html[data-theme="dark"] input, html[data-theme="dark"] textarea, html[data-theme="dark"] select { color: var(--ink); border-color: var(--line); background: #121a17; }
html[data-theme="dark"] .search input { background: #121a17; }
html[data-theme="dark"] .kpi strong { color: var(--ink); }
html[data-theme="dark"] .kpi-icon, html[data-theme="dark"] .mini-avatar, html[data-theme="dark"] .large-avatar { background: #2b3b35; }
html[data-theme="dark"] .quote, html[data-theme="dark"] .new-person-panel, html[data-theme="dark"] .journalist-chip, html[data-theme="dark"] .tag, html[data-theme="dark"] .settings-note { color: var(--ink); background: #1c2824; }
html[data-theme="dark"] .contact-requirement { border-color: var(--line); background: #1c2824; }
html[data-theme="dark"] .spokesperson-option { background: #18221e; }
html[data-theme="dark"] .spokesperson-option:hover { background: #22302b; }
html[data-theme="dark"] .closure-banner { color: var(--ink); border-color: #3d554c; background: #22312c; }
html[data-theme="dark"] .closure-banner small { color: var(--muted); }
html[data-theme="dark"] .suggestions { color: var(--ink); border-color: var(--line); background: #18221e; }
html[data-theme="dark"] .suggestion { border-color: #2c3b35; }
html[data-theme="dark"] .suggestion:hover { background: #24322d; }
html[data-theme="dark"] .btn { color: var(--ink); border-color: var(--line); background: #202c28; }
html[data-theme="dark"] .btn-primary { color:var(--color-on-primary-action);border-color:var(--color-primary-action);background:var(--color-primary-action); }
html[data-theme="dark"] .dashboard-filter-button.active, html[data-theme="dark"] .dashboard-edit-button.active { color:var(--color-on-primary-action);border-color:var(--color-primary-action);background:var(--color-primary-action); }
html[data-theme="dark"] .theme-choice.selected { border-color: var(--green); background: color-mix(in srgb, var(--green) 12%, var(--card)); }
html[data-theme="dark"] .brand-lockup::before { background: radial-gradient(ellipse 92% 78% at 50% 23%, rgba(255,222,199,.3) 0%, rgba(189,68,0,.16) 47%, rgba(255,96,0,0) 82%); }
html[data-theme="dark"] .organization-brand-logo img { filter: drop-shadow(0 9px 17px rgba(62,18,0,.36)); }
html[data-theme="dark"] .settings-menu button { color: var(--ink); }
html[data-theme="dark"] .settings-menu button:hover { background: #24312d; }
html[data-theme="dark"] .settings-menu button.active { color: #fff; background: var(--green); }
html[data-theme="dark"] .meta, html[data-theme="dark"] .timeline li, html[data-theme="dark"] .tag-management-row, html[data-theme="dark"] .media-card { border-color: #2c3a35; }
html[data-theme="dark"] .sentiment-pill.positief { color: #8de0b5; background: #173b2c; border-color: #2c6048; }
html[data-theme="dark"] .sentiment-pill.neutraal { color: #76dce3; background: #17363a; border-color: #28565c; }
html[data-theme="dark"] .sentiment-pill.negatief { color: #ffaaa1; background: #42231f; border-color: #6b3730; }

@media (max-width: 1000px) {
  .settings-shell { grid-template-columns: 1fr; }
  .settings-menu { position: static; grid-template-columns: repeat(2,1fr); }
  .settings-menu-heading { grid-column: 1/-1; }
  .settings-content .settings-grid { grid-template-columns: 1fr; }
  .settings-content .profile-photo-card { position: static; }
  .journalist-profile-summary { grid-template-columns: 1fr; }
  .journalist-stats { grid-template-columns: repeat(2,1fr); }
  .dashboard-controls { align-items: stretch; flex-direction: column; }
  .dashboard-control-actions { justify-content: flex-start; }
  .dashboard-customizer { grid-template-columns: 1fr; }
  .analytics-summary-grid { grid-template-columns: repeat(2,1fr); }
  .dashboard-widget-compact { grid-column: span 6; }
  .dashboard-widget-medium, .dashboard-widget-wide, .dashboard-widget-large, .dashboard-widget-full { grid-column: span 12; }
  .analytics-split { grid-template-columns: 1fr; }
  .analytics-sentiment-layout { grid-template-columns: 150px minmax(0,1fr); }
  .analytics-sentiment-donut { width: 140px; }
  .team-trend-axis { grid-template-columns: minmax(180px,.65fr) 1fr 1fr 48px; }
  .team-trend-row { grid-template-columns: minmax(180px,.65fr) minmax(280px,1fr) 48px; }
}

@media (max-width: 720px) {
  .brand-lockup { display: flex; justify-content: flex-start; gap: 12px; padding: 0 8px 10px; }
  .organization-brand-logo { width: 54px; height: 54px; }
  .powered-by { align-self: center; }
  .brand-motto, .sidebar-foot { display: none; }
  .nav-group { display: contents; }
  .subnav { display: flex; padding-left: 0; }
  .nav-parent { display: none !important; }
  .settings-menu { grid-template-columns: 1fr; }
  .theme-options { grid-template-columns: 1fr; }
  .spokesperson-picker { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .sentiment-widget-content { grid-template-columns: 92px minmax(0,1fr); }
  .sentiment-donut { width: 92px; }
  .analytics-sentiment-layout { grid-template-columns: 1fr; justify-items: center; }
  .analytics-sentiment-layout > div:last-child { width: 100%; }
  .analytics-sentiment-donut { width: 140px; }
  .closure-banner { grid-template-columns: 36px 1fr; }
  .closure-banner .btn { grid-column: 1 / -1; }
  .journalist-profile-contact, .journalist-stats { grid-template-columns: 1fr; }
  .journalist-profile-contact > div:last-child { grid-column: auto; }
  .pending-invite-row { grid-template-columns: 32px 1fr; }
  .pending-invite-row .invite-status, .pending-invite-row .btn { grid-column: 2; justify-self: start; }
  .dashboard-filter-group { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .dashboard-filter-group label { min-width: 0; }
  .widget-options, .analytics-summary-grid { grid-template-columns: 1fr; }
  .dashboard-widget-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .dashboard-widget { grid-row: auto; }
  .dashboard-widget-compact, .dashboard-widget-medium, .dashboard-widget-wide, .dashboard-widget-large, .dashboard-widget-full { grid-column: 1; min-height: 0; }
  .dashboard-widget.is-editing { cursor: default; }
  .dashboard-customizer-actions { justify-content: stretch; }
  .dashboard-customizer-actions .btn { flex: 1; }
  .dashboard-toolbar { align-items: stretch; flex-direction: column; }
  .dashboard-toolbar-main { justify-content: space-between; }
  .dashboard-edit-button { align-self: flex-start; }
  .team-trend-axis { display: none; }
  .team-trend-row { grid-template-columns: minmax(0,1fr) 44px; gap: 5px 10px; padding-block: 10px; }
  .team-trend-row svg { grid-column: 1 / -1; grid-row: 2; min-width: 0; }
  .team-trend-row > strong { grid-column: 2; grid-row: 1; }
}

/* Oorspronkelijke symmetrische organisatie-pay-off */
.brand-motto {
  position: relative;
  z-index: 1;
  display: block;
  flex: 1 1 auto;
  min-height: 210px;
  margin: 14px 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.brand-motto::before,
.brand-motto::after { content: ''; position: absolute; }
.brand-motto::before { top: 50%; right: -247px; display: block; width: 360px; height: 360px; margin-top: -180px; border: 22px double rgba(255,255,255,.25); border-radius: 52px; transform: rotate(45deg); }
.brand-motto::after { display: none; }
.brand-motto strong {
  position: absolute;
  z-index: 2;
  right: -123px;
  top: calc(50% - 8px);
  width: 320px;
  height: auto;
  color: #fff;
  font-family: "Avenir Next Condensed", "Arial Narrow", "Avenir Next", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .055em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: none;
  white-space: nowrap;
  writing-mode: initial;
  transform: rotate(-90deg);
  transform-origin: center;
}
.motto-shield { display: none; }
.sidebar-foot {
  margin-top: auto;
  padding: 14px 12px 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 16px;
  background: linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.035) 55%,rgba(31,31,31,.08));
  -webkit-backdrop-filter: blur(14px) saturate(155%);
  backdrop-filter: blur(14px) saturate(155%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.34),
    inset 0 -1px 0 rgba(255,255,255,.07),
    0 12px 28px rgba(92,28,0,.18);
}
.sidebar-user { display: grid; grid-template-columns: minmax(0,1fr) auto; width: 100%; }
.sidebar-profile-link { min-width: 0; display: grid; grid-template-columns: 34px minmax(0,1fr); align-items: center; gap: 10px; padding: 0; border: 0; color: #fff; background: transparent; text-align: left; }
.sidebar-profile-link:hover b { text-decoration: underline; text-underline-offset: 3px; }
.sidebar-profile-link small { display: block; color: rgba(255,255,255,.72); }
.user-actions { display: flex; gap: 5px; }
.logout-button { width: 30px; height: 34px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 7px; color: rgba(255,255,255,.78); background: transparent; font-size: 16px; }
.logout-button:hover { color: #fff; background: rgba(31,31,31,.22); }

@media (max-width: 720px) {
  .sidebar::before,
  .sidebar::after { display: none; }
  .sidebar { width: 100%; padding-right: 16px; }
}

/* Inloggen */
.login-shell { min-height: 100vh; display: grid; grid-template-columns: minmax(430px,46%) 1fr; background: var(--mist-light); }
.login-brand-panel { position: relative; min-height: 100vh; overflow: hidden; color: #fff; background-image: linear-gradient(90deg,rgba(13,31,17,.72) 0%,rgba(20,48,25,.57) 58%,rgba(8,22,12,.78) 100%),linear-gradient(180deg,rgba(255,96,0,.08),rgba(0,0,0,.14)),url('assets/login-pitch.png'); background-position: center; background-size: cover; }
.login-powered { position: absolute; z-index: 2; left: 34px; top: 31px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.login-powered b { letter-spacing: .14em; }
.login-brand-content { position: absolute; z-index: 2; left: calc(50% - 24px); top: 50%; display: grid; justify-items: center; transform: translate(-50%,-50%); }
.login-brand-content img { width: 190px; height: 190px; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(0,0,0,.34)); }
.login-brand-content span { margin-top: 17px; font-size: 13px; font-weight: 750; letter-spacing: .08em; text-shadow: 0 2px 12px rgba(0,0,0,.55); text-transform: uppercase; }
/* KNGU's supplied transparent lockup needs separation from the dark gymnast image,
   not a panel behind it. The compact sidebar opens to its natural wide lockup. */
html[data-organization-presentation="kngu"] .login-brand-content {
  transform: translate(-50%,calc(-50% - 22px));
}
html[data-organization-presentation="kngu"] .login-brand-content img {
  position: relative;
  z-index: 1;
  width: min(340px,calc(100vw - 64px));
  height: var(--tenant-login-logo-height);
  filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 7px rgba(255,255,255,.96)) drop-shadow(0 16px 28px rgba(0,0,0,.42));
}
html[data-organization-presentation="kngu"] .login-brand-content::before {
  content: '';
  position: absolute;
  z-index: 0;
  width: min(360px,calc(100vw - 48px));
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,rgba(255,255,255,.84) 0%,rgba(255,255,255,.46) 48%,rgba(255,255,255,0) 78%);
  filter: blur(10px);
  pointer-events: none;
}
html[data-organization-presentation="kngu"] .organization-brand-logo {
  isolation: isolate;
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  padding: 0;
  background: transparent;
}
html[data-organization-presentation="kngu"] .organization-brand-logo::before {
  content: '';
  position: absolute;
  z-index: 0;
  width: 110%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,rgba(255,255,255,.74) 0%,rgba(255,255,255,.34) 48%,rgba(255,255,255,0) 78%);
  filter: blur(5px);
  pointer-events: none;
}
html[data-organization-presentation="kngu"] .organization-brand-logo img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 5px rgba(255,255,255,.92)) drop-shadow(0 5px 12px rgba(0,0,0,.35));
}
html[data-organization-presentation="kngu"] .shell:has(.sidebar:hover) .organization-brand-logo,
html[data-organization-presentation="kngu"] .shell:has(.sidebar:focus-within) .organization-brand-logo {
  width: 192px;
  height: 72px;
  flex-basis: 192px;
}
.login-payoff-rail { position: absolute; z-index: 3; top: 0; right: 0; bottom: 0; width: 48px; border-left: 1px solid rgba(255,255,255,.28); background: rgba(255,96,0,.88); }
.login-payoff-rail strong { position: absolute; left: 50%; top: 50%; width: 420px; color: #fff; font-family: "Avenir Next Condensed","Arial Narrow","Avenir Next",sans-serif; font-size: 16px; font-weight: 750; letter-spacing: .045em; text-align: center; text-transform: uppercase; white-space: nowrap; transform: translate(-50%,-50%) rotate(-90deg); }
.login-form-panel { position: relative; min-height: 100vh; display: grid; place-items: center; padding: 48px; color: var(--ink); background: var(--mist-light); }
.login-form-card { width: min(430px,100%); }
.login-kicker { margin-bottom: 22px; color: var(--green); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.login-form-card h1 { margin: 0 0 9px; font-size: 38px; }
.login-form-card > p { margin: 0 0 31px; color: var(--muted); }
.login-form-card .field { margin-bottom: 18px; }
.login-form-card input { padding: 13px 14px; background: #fff; }
.login-form-card .auth-code-input { font-size: 23px; font-weight: 750; letter-spacing: .22em; text-align: center; }
.mfa-code-group { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 9px; }
.login-form-card .mfa-code-digit { min-width: 0; padding: 13px 4px; font-size: 24px; font-weight: 800; text-align: center; }
.login-form-card .mfa-code-digit:focus { border-color: var(--green); box-shadow: 0 0 0 3px color-mix(in srgb,var(--green) 18%,transparent); }
.password-input-wrap { position: relative; }
.password-input-wrap > input { padding-right: 49px; }
.password-toggle { position: absolute; right: 7px; top: 50%; width: 36px; height: 36px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 6px; color: var(--muted); background: transparent; transform: translateY(-50%); }
.password-toggle:hover, .password-toggle.showing { color: var(--green); background: var(--mist-light); }
.password-toggle svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.password-toggle.showing::after { content: ''; position: absolute; width: 22px; height: 2px; border-radius: 2px; background: currentColor; transform: rotate(-42deg); }
.field-label-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.field-label-row label { margin: 0; }
.field-label-row button { padding: 0; border: 0; color: var(--green-2); background: transparent; font-size: 12px; font-weight: 700; }
.remember-choice { display: flex; align-items: center; gap: 9px; margin: 3px 0 23px; color: var(--muted); font-size: 13px; cursor: pointer; }
.remember-choice input { width: 16px; height: 16px; margin: 0; accent-color: var(--green); }
.login-submit { width: 100%; padding: 13px 17px; justify-content: space-between; }
.login-security { position: absolute; bottom: 25px; color: var(--muted); font-size: 11px; }
html[data-theme="dark"] .login-form-panel { background: var(--paper); }
html[data-theme="dark"] .login-form-card input { background: #17201d; }

@media (max-width: 820px) {
  .login-shell { grid-template-columns: 1fr; }
  .login-brand-panel { min-height: 240px; }
  .login-brand-content { left: 50%; transform: translate(-50%,-50%); }
  .login-brand-content img { width: 112px; height: 112px; }
  html[data-organization-presentation="kngu"] .login-brand-content img { width: min(210px,calc(100vw - 48px)); height: 108px; }
  .login-payoff-rail { width: 35px; }
  .login-payoff-rail strong { font-size: 11px; }
  .login-form-panel { min-height: calc(100vh - 240px); padding: 42px 26px 62px; }
}
@media (max-width: 420px) { .mfa-code-group { gap: 5px; } .login-form-card .mfa-code-digit { padding-inline: 2px; font-size: 20px; } }

@media (max-width: 720px) {
  .brand-motto { display: none; }
}

/* Woordvoeringslijnen & Q&A-kennisbank */
.statement-browser { margin-top: 24px; overflow: hidden; border-top: 4px solid var(--green); }
.statement-toolbar { align-items: center; }
.statement-results-head { display: flex; justify-content: space-between; gap: 18px; padding: 15px 18px 0; color: var(--muted); }
.statement-results-head span { color: var(--ink); font-size: 12px; font-weight: 850; }
.statement-results-head small { font-size: 11px; }
.statement-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 15px; padding: 18px; }
.statement-card { min-height: 230px; display: flex; flex-direction: column; padding: 20px; box-shadow: none; cursor: pointer; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.statement-card:hover, .statement-card:focus-visible { border-color: var(--green); box-shadow: 0 12px 26px rgba(25,53,42,.1); outline: none; transform: translateY(-2px); }
.statement-card.is-archived { opacity: .78; }
.statement-card-top { min-height: 27px; display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.statement-card h2 { margin: 15px 0 7px; font-size: 20px; line-height: 1.15; }
.statement-dossier { margin: 0 0 14px; color: var(--muted); font-size: 12px; }
.statement-no-tags { color: var(--muted); font-size: 11px; }
.statement-status, .statement-archive-label { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; border-radius: 99px; font-size: 10px; font-weight: 850; letter-spacing: .025em; }
.statement-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.statement-status.current { color: #176247; background: #e2f3ea; }
.statement-status.review { color: #7b5a10; background: #fff1c5; }
.statement-status.expired { color: #6a6f6c; background: #ecefed; }
.statement-archive-label { color: var(--muted); background: var(--mist-light); }
.statement-card-meta { display: grid; gap: 8px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; }
.statement-card-meta > span { display: flex; align-items: center; gap: 8px; color: var(--ink); font-size: 12px; }
.statement-card-meta time { line-height: 1.3; }
.statement-empty { display: grid; gap: 5px; }
.statement-empty b { color: var(--ink); }
.statement-form { max-width: 1080px; }
.statement-form .section-title > div { display: grid; gap: 5px; }
.optional-label { color: var(--muted); font-weight: 500; }
.statement-people-editor { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; min-height: 45px; padding: 6px 9px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); }
.statement-people-editor:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px color-mix(in srgb,var(--green) 12%,transparent); }
.statement-people-chips { display: contents; }
.statement-people-chips > span { display: inline-flex; align-items: center; gap: 6px; max-width: 100%; padding: 6px 8px 6px 10px; border: 1px solid var(--line); border-radius: 99px; color: var(--ink); background: var(--mist-light); font-size: 11px; font-weight: 750; }
.statement-people-chips > span button { width: 18px; height: 18px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; color: var(--muted); background: transparent; font-size: 15px; line-height: 1; }
.statement-people-chips > span button:hover, .statement-people-chips > span button:focus-visible { color: var(--ink); background: color-mix(in srgb,var(--ink) 9%,transparent); outline: none; }
.statement-people-editor > input[type="text"], .statement-people-editor > input:not([type]) { flex: 1 1 210px; min-width: 170px; min-height: 31px; padding: 4px 2px; border: 0; background: transparent; box-shadow: none; }
.statement-people-editor > input:focus { outline: none; box-shadow: none; }
.statement-share-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
.statement-share-choice { margin: 0 !important; cursor: pointer; }
.statement-share-choice > input { position: absolute; opacity: 0; pointer-events: none; }
.statement-share-choice > span { min-height: 54px; display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); }
.statement-share-choice > input:checked + span { border-color: var(--green); background: color-mix(in srgb,var(--green) 8%,var(--card)); box-shadow: inset 3px 0 0 var(--green); }
.statement-share-choice > input:focus-visible + span { outline: 3px solid color-mix(in srgb,var(--green) 20%,transparent); }
.statement-share-choice b, .statement-share-choice small { display: block; }
.statement-share-choice small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.rich-editor-shell { overflow: hidden; border: 1px solid var(--line); border-radius: 9px; background: var(--card); }
.rich-editor-shell:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px color-mix(in srgb,var(--green) 12%,transparent); }
.rich-toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; padding: 8px; border-bottom: 1px solid var(--line); background: var(--mist-light); }
.rich-toolbar select { min-height: 31px; width: auto; padding: 5px 27px 5px 8px; border-color: transparent; border-radius: 5px; color: var(--ink); background-color: transparent; font-size: 11px; font-weight: 750; }
.rich-toolbar select:hover, .rich-toolbar select:focus-visible { border-color: var(--line); background-color: var(--card); outline: none; }
.rich-toolbar button { min-width: 34px; min-height: 31px; padding: 5px 8px; border: 1px solid transparent; border-radius: 5px; color: var(--ink); background: transparent; font-size: 11px; font-weight: 750; }
.rich-toolbar button:hover, .rich-toolbar button:focus-visible { border-color: var(--line); background: var(--card); outline: none; }
.rich-toolbar .qa-mode-button { min-width: 72px; border-color: var(--line); }
.rich-toolbar .qa-mode-button[aria-pressed="true"] { border-color: var(--green-2); color: var(--green); background: color-mix(in srgb,var(--mint) 68%,var(--card)); }
.rich-color-picker { position: relative; }
.rich-color-picker summary { width: 34px; min-height: 31px; display: grid; place-items: center; border: 1px solid transparent; border-radius: 5px; cursor: pointer; list-style: none; }
.rich-color-picker summary::-webkit-details-marker { display: none; }
.rich-color-picker summary:hover, .rich-color-picker summary:focus-visible { border-color: var(--line); background: var(--card); outline: none; }
.active-color-swatch, .color-swatch { width: 18px; height: 18px; display: block; padding: 0; border: 1px solid color-mix(in srgb,var(--ink) 35%,transparent); border-radius: 4px; background: var(--swatch,#000); }
.color-auto { background: linear-gradient(135deg,var(--ink) 0 44%,transparent 45% 55%,var(--card) 56% 100%); }
.rich-color-grid { position: absolute; z-index: 12; top: calc(100% + 6px); left: 0; width: 174px; display: grid; grid-template-columns: repeat(5,1fr); gap: 7px; padding: 10px; border: 1px solid var(--line); border-radius: 9px; background: var(--card); box-shadow: var(--shadow); }
.rich-color-grid .color-swatch { width: 24px; height: 24px; min-width: 24px; min-height: 24px; padding: 0; background: var(--swatch); }
.rich-color-grid .color-auto { background: linear-gradient(135deg,var(--ink) 0 44%,transparent 45% 55%,var(--card) 56% 100%); }
.rich-color-grid .color-swatch:hover, .rich-color-grid .color-swatch:focus-visible { border-color: var(--green); box-shadow: 0 0 0 2px color-mix(in srgb,var(--green) 22%,transparent); }
.rich-toolbar > span { width: 1px; height: 23px; margin: 0 3px; background: var(--line); }
.rich-link-button svg { width: 17px; height: 17px; display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.rich-editor { min-height: 320px; padding: 25px 27px; outline: none; }
.rich-editor:empty::before { content: attr(data-placeholder); color: var(--muted); pointer-events: none; }
.rich-content { color: var(--ink); font-size: 15px; line-height: 1.7; }
.rich-content > :first-child, .rich-editor > :first-child { margin-top: 0; }
.rich-content > :last-child, .rich-editor > :last-child { margin-bottom: 0; }
.rich-content h1, .rich-editor h1 { margin: 0 0 18px; font-size: 27px; line-height: 1.15; text-transform: none; }
.rich-content h2, .rich-editor h2 { margin: 28px 0 12px; font-size: 21px; line-height: 1.2; letter-spacing: -.025em; }
.rich-content h3, .rich-editor h3 { margin: 22px 0 9px; font-size: 16px; }
.rich-content p, .rich-editor p { margin: 0 0 15px; }
.rich-content ul, .rich-content ol, .rich-editor ul, .rich-editor ol { margin: 0 0 16px; padding-left: 25px; }
.rich-content ul[data-list-style="dash"], .rich-editor ul[data-list-style="dash"] { list-style: none; padding-left: 20px; }
.rich-content ul[data-list-style="dash"] > li, .rich-editor ul[data-list-style="dash"] > li { position: relative; }
.rich-content ul[data-list-style="dash"] > li::before, .rich-editor ul[data-list-style="dash"] > li::before { content: '—'; position: absolute; left: -19px; color: var(--muted); }
.rich-content li + li, .rich-editor li + li { margin-top: 5px; }
.rich-content blockquote, .rich-editor blockquote { margin: 18px 0; padding: 13px 17px; border-left: 3px solid var(--green); color: var(--muted); background: var(--mist-light); }
.rich-content a, .rich-editor a { color: var(--green); font-weight: 700; text-underline-offset: 3px; }
.rich-empty { color: var(--muted); font-style: italic; }
.statement-qa-form { padding: 0; overflow: hidden; }
.statement-qa-form summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 21px 24px; cursor: pointer; list-style: none; }
.statement-qa-form summary::-webkit-details-marker { display: none; }
.statement-qa-form summary span:first-child { display: grid; gap: 3px; }
.statement-qa-form summary small { color: var(--muted); font-size: 11px; font-weight: 500; }
.statement-qa-form summary > span:last-child { color: var(--green); font-size: 24px; transition: transform .18s ease; }
.statement-qa-form details[open] summary > span:last-child { transform: rotate(45deg); }
.statement-qa-editor { padding: 0 24px 24px; border-top: 1px solid var(--line); }
.statement-qa-editor .rich-field { margin-top: 20px; margin-bottom: 0; }
.statement-actions { flex-wrap: wrap; }
.statement-archived-banner { margin-top: 18px; padding: 12px 15px; border: 1px solid var(--line); border-left: 4px solid var(--muted); border-radius: 7px; color: var(--muted); background: var(--card); }
.statement-summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 24px; padding: 20px 22px; border-top: 4px solid var(--green); }
.statement-summary > div { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 8px 13px; }
.statement-summary h2 { grid-column: 2; grid-row: 1; }
.statement-summary p { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 11px; }
.statement-quick-status { display: grid; gap: 5px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.statement-quick-status select { min-width: 155px; padding: 9px 11px; text-transform: none; }
.statement-detail-grid { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(310px,.65fr); gap: 17px; margin-top: 17px; }
.statement-detail-main, .statement-detail-side { display: grid; align-content: start; gap: 16px; }
.statement-content-card { min-height: 300px; padding: 28px 30px; }
.statement-collapsible { min-height: 0; padding: 0; overflow: hidden; }
.statement-fold-summary { display: block; cursor: pointer; list-style: none; }
.statement-fold-summary::-webkit-details-marker { display: none; }
.statement-collapsible-heading { display: grid; gap: 2px; padding: 17px 21px 14px; }
.statement-collapsible-heading b { font-size: 13px; }
.statement-collapsible-heading small { color: var(--muted); font-size: 10px; }
.statement-collapsible-body { padding: 27px 30px 30px; }
.statement-collapsible-preview { display: block; max-height: 78px; margin: 0 21px 2px; overflow: hidden; color: var(--ink); font-size: 12px; line-height: 1.65; -webkit-mask-image: linear-gradient(to bottom,#000 0%,#000 38%,transparent 100%); mask-image: linear-gradient(to bottom,#000 0%,#000 38%,transparent 100%); }
.statement-collapsible[open] .statement-collapsible-preview { display: none; }
.statement-collapsible[open] .statement-fold-summary { border-bottom: 1px solid var(--line); }
.statement-fold-control { display: flex; align-items: center; justify-content: center; min-height: 38px; color: var(--green-2); background: color-mix(in srgb,var(--card) 94%,var(--mint)); transition: background .16s ease,color .16s ease; }
.statement-fold-summary:hover .statement-fold-control { color: var(--green); background: color-mix(in srgb,var(--card) 86%,var(--mint)); }
.statement-fold-chevron { width: 10px; height: 10px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-3px) rotate(45deg); transition: transform .18s ease; }
.statement-collapsible[open] .statement-fold-chevron { transform: translateY(3px) rotate(225deg); }
.statement-comments { padding: 22px 24px; }
.statement-comments-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 17px; }
.statement-comments-head h3 { margin-bottom: 3px; }
.statement-comment-list { display: grid; gap: 13px; }
.statement-comment { display: grid; grid-template-columns: 34px minmax(0,1fr); align-items: start; gap: 10px; }
.statement-comment-body { min-width: 0; }
.statement-comment-bubble { display: inline-block; max-width: min(680px,100%); padding: 10px 13px; border-radius: 4px 15px 15px 15px; background: var(--mist-light); }
.statement-comment-meta { display: flex; flex-wrap: wrap; align-items: baseline; gap: 7px; margin-bottom: 4px; }
.statement-comment-meta b { font-size: 12px; }
.statement-comment-meta time { color: var(--muted); font-size: 9px; }
.statement-comment-bubble p { margin: 0; white-space: pre-wrap; overflow-wrap: anywhere; font-size: 13px; line-height: 1.5; }
.statement-comment-form { display: grid; gap: 10px; margin-top: 18px; padding-top: 17px; border-top: 1px solid var(--line); }
.statement-comments > .statement-comment-form:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.statement-comment-form[hidden], .statement-comments[hidden] { display: none; }
.statement-comment-form textarea { width: 100%; min-height: 92px; resize: vertical; border-radius: 10px; background: var(--mist-light); }
.statement-comment-actions { display: flex; justify-content: flex-end; margin-top: 8px; }
.statement-comment-actions .btn { min-height: 34px; padding: 7px 13px; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.statement-qa-card { border-top: 4px solid var(--green); }
.statement-qa-card .rich-content p, .statement-qa-editor .rich-editor p { margin-bottom: 6px; }
.statement-qa-card .rich-content p:nth-of-type(even), .statement-qa-editor .rich-editor p:nth-of-type(even) { margin-bottom: 18px; }
.statement-section-label { margin-bottom: 20px; color: var(--green); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.statement-history .panel-head { margin-bottom: 20px; }
.statement-history .panel-head h3 { margin-bottom: 3px; }
.statement-timeline-item p { margin: 7px 0 3px; white-space: pre-wrap; }
.statement-timeline-head { display: flex; justify-content: space-between; gap: 8px; }
.statement-timeline-head time { color: var(--muted); font-size: 9px; text-align: right; }
.statement-event-type { color: var(--green); font-size: 9px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.statement-old-version { margin-top: 11px; }
.statement-old-version > summary { color: var(--green); cursor: pointer; font-size: 11px; font-weight: 750; }
.statement-old-version > div { margin-top: 10px; padding: 14px; border: 1px solid var(--line); border-radius: 7px; background: var(--mist-light); }
.statement-old-version h4 { margin: 13px 0 7px; }
.statement-old-version h4:first-child { margin-top: 0; }
.statement-old-version .rich-content { font-size: 12px; }
.statement-composer { margin: 0; }
.statement-composer-actions { display: flex; justify-content: flex-end; gap: 8px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; margin-top: 18px; }
.portfolio-card { min-height: 120px; display: grid; grid-template-columns: 43px minmax(0,1fr); align-items: center; gap: 13px; padding: 18px; cursor: pointer; box-shadow: none; }
.portfolio-card:hover, .portfolio-card:focus-visible { border-color: var(--green); outline: none; }
.portfolio-card h2 { margin: 0 0 5px; font-size: 17px; }
.portfolio-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.portfolio-inline-form { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 14px; align-items: end; margin: 16px 0; padding: 17px 18px; border-left: 4px solid var(--green); }
.portfolio-inline-form .field { margin: 0; }
.portfolio-inline-actions { display: flex; gap: 8px; }
.portfolio-rename-form { margin-top: 0; }
.unsaved-dialog-backdrop { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(11,15,25,.48); backdrop-filter: blur(5px); }
.unsaved-dialog { width: min(480px,100%); padding: 24px; border: 1px solid var(--line); border-radius: 14px; color: var(--ink); background: var(--card); box-shadow: 0 24px 70px rgba(11,15,25,.28); }
.unsaved-dialog h2 { margin: 0 0 8px; }
.unsaved-dialog p { margin: 0 0 20px; color: var(--muted); }
.unsaved-dialog > div { display: flex; justify-content: flex-end; gap: 9px; }
.statement-source-compact { margin-top: 20px; padding: 15px; border: 1px solid var(--line); border-radius: 9px; background: var(--mist-light); }
.statement-source-compact-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.statement-source-compact-head > div { display: grid; gap: 3px; }
.statement-source-compact-head label { margin: 0; }
.statement-source-compact-head span { color: var(--muted); font-size: 10px; }
.statement-source-headup { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 10px; margin-top: 11px; padding: 10px 11px; border-left: 3px solid var(--green); border-radius: 0 7px 7px 0; background: var(--card); }
.statement-source-headup > span { color: var(--green); }
.statement-source-headup.neutral { border-left-color: var(--line); }
.statement-source-headup.neutral > span { color: var(--muted); }
.statement-source-headup p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.4; }
.statement-source-selected { display: grid; grid-template-columns: 30px minmax(0,1fr) auto; align-items: center; gap: 9px; margin-top: 9px; padding: 9px 10px; border: 1px solid var(--line); border-radius: 7px; background: var(--card); }
.statement-source-selected b, .statement-source-selected small { display: block; }
.statement-source-selected small { color: var(--muted); font-size: 10px; }
.statement-source-selected-warning { color: #8a5a00 !important; white-space: normal; }
.statement-source-selected .btn { min-width: 32px; padding: 5px; }
.statement-picker-backdrop { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 24px; background: rgba(11,15,25,.52); backdrop-filter: blur(5px); }
.statement-picker-dialog { display: grid; grid-template-rows: auto auto minmax(0,1fr) auto; width: min(980px,100%); max-height: min(86vh,760px); overflow: hidden; border: 1px solid var(--line); border-radius: 14px; color: var(--ink); background: var(--card); box-shadow: 0 28px 80px rgba(11,15,25,.32); }
.statement-picker-dialog > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 20px 22px 16px; border-bottom: 1px solid var(--line); }
.statement-picker-dialog > header h2 { margin: 5px 0 4px; }
.statement-picker-dialog > header p { margin: 0; color: var(--muted); font-size: 11px; }
.statement-picker-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 16px; border-bottom: 1px solid var(--line); background: var(--mist-light); }
.statement-picker-toolbar .search { flex: 1; max-width: 360px; }
.statement-picker-scope { display: grid; gap: 3px; max-width: 470px; color: var(--muted); font-size: 10px; line-height: 1.35; text-align: right; }
.statement-picker-scope b { color: var(--ink); }
.statement-picker-scope small { color: var(--muted); font-size: 9px; }
.statement-picker-body { display: grid; grid-template-columns: minmax(270px,.75fr) minmax(0,1.35fr); min-height: 0; }
.statement-picker-list { overflow-y: auto; padding: 10px; border-right: 1px solid var(--line); background: var(--mist-light); }
.statement-picker-item { display: grid; gap: 5px; width: 100%; margin-bottom: 7px; padding: 11px; border: 1px solid transparent; border-radius: 8px; color: var(--ink); background: var(--card); text-align: left; cursor: pointer; }
.statement-picker-item:hover, .statement-picker-item.active { border-color: var(--green); }
.statement-picker-item span, .statement-picker-item b, .statement-picker-item small { display: block; }
.statement-picker-item small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.statement-picker-item em { color: var(--green); font-size: 9px; font-style: normal; font-weight: 800; }
.statement-picker-item em.warning { color: #8a5a00; }
.statement-picker-preview { min-height: 0; overflow-y: auto; padding: 20px 22px; }
.statement-picker-preview-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.statement-picker-preview-head h3 { margin: 8px 0 4px; font-size: 18px; }
.statement-picker-preview-head p { margin: 0; color: var(--muted); font-size: 10px; }
.statement-picker-match { display: grid; gap: 4px; margin: 14px 0; padding: 10px 12px; border-radius: 7px; color: var(--muted); background: var(--mist-light); font-size: 11px; }
.statement-picker-match b { color: var(--ink); }
.statement-picker-content h4 { margin: 20px 0 9px; }
.statement-picker-content .rich-content { font-size: 13px; }
.statement-viewer-dialog { grid-template-rows: auto minmax(0,1fr) auto; width: min(760px,100%); }
.statement-viewer-content { min-height: 0; overflow-y: auto; padding: 20px 22px; }
.statement-picker-dialog > footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; border-top: 1px solid var(--line); }
.statement-picker-dialog > footer span { color: var(--muted); font-size: 11px; }
.portfolio-card-actions { display: flex; align-items: center; gap: 4px; }
.portfolio-folder-icon { width: 43px; height: 38px; display: grid; place-items: center; border-radius: 8px; color: var(--green); background: var(--mist-light); font-size: 22px; }

html[data-theme="dark"] .statement-status.current { color: #8ee0bd; background: #1d4436; }
html[data-theme="dark"] .statement-status.review { color: #f5d477; background: #493d1e; }
html[data-theme="dark"] .statement-status.expired { color: #bdc6c2; background: #2b3531; }
html[data-theme="dark"] .rich-editor-shell, html[data-theme="dark"] .statement-share-choice > span { background: #121a17; }
html[data-theme="dark"] .rich-toolbar, html[data-theme="dark"] .statement-old-version > div { background: #1c2824; }
html[data-theme="dark"] .statement-comment-bubble, html[data-theme="dark"] .statement-comment-form textarea { background: #1c2824; }
html[data-theme="dark"] .statement-people-editor { background: #121a17; }

@media (max-width: 1120px) {
  .statement-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .portfolio-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .statement-detail-grid { grid-template-columns: 1fr; }
  .statement-detail-side { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .statement-grid, .statement-share-grid, .statement-detail-side, .portfolio-grid { grid-template-columns: 1fr; }
  .statement-results-head, .statement-summary { align-items: flex-start; flex-direction: column; }
  .statement-grid { padding: 13px; }
  .statement-card { min-height: 210px; }
  .statement-source-compact-head, .statement-picker-toolbar, .statement-picker-preview-head { align-items: flex-start; flex-direction: column; }
  .statement-picker-backdrop { padding: 12px; }
  .statement-picker-dialog { max-height: 90vh; }
  .statement-picker-body { grid-template-columns: 1fr; }
  .statement-picker-list { max-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .statement-picker-toolbar .search { width: 100%; max-width: none; }
  .statement-picker-toolbar > span { text-align: left; }
  .rich-toolbar { overflow-x: auto; flex-wrap: nowrap; }
  .rich-toolbar button, .rich-toolbar select { flex: 0 0 auto; }
  .rich-editor { min-height: 260px; padding: 20px 18px; }
  .statement-content-card { padding: 0; }
  .statement-collapsible-body { padding: 22px 20px; }
  .statement-summary > div { grid-template-columns: 1fr; }
  .statement-summary h2, .statement-summary p { grid-column: 1; grid-row: auto; }
  .statement-quick-status, .statement-quick-status select { width: 100%; }
}
/* Persoonlijke Lezer binnen dezelfde organisatieshell en accenttaal. */
.approval-shell,
.approval-request-dialog {
  --approval-accent: var(--green);
  --approval-bg: var(--paper);
  --approval-surface: var(--card);
  --approval-surface-soft: color-mix(in srgb,var(--card) 92%,var(--ink));
  --approval-text: var(--ink);
  --approval-muted: var(--muted);
  --approval-border: var(--line);
  --approval-shadow: 0 16px 44px rgba(12,19,23,.1);
}
.approval-shell {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  overflow-x: clip;
  color: var(--approval-text);
  background: var(--approval-bg);
  font-size: 16px;
}
.approval-shell * { min-width: 0; }
.approval-shell-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px max(20px,calc((100% - 1080px)/2));
  border-bottom: 1px solid var(--approval-border);
  background: var(--approval-surface);
}
.approval-shell-header > div { display: flex; align-items: center; gap: 12px; }
.approval-shell-header b { font-size: 15px; letter-spacing: .12em; }
.approval-shell-header span { color: var(--approval-muted); overflow-wrap: anywhere; }
.approval-shell-account { justify-content: flex-end; text-align: right; }
.approval-shell-account button,
.approval-task-filters button {
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--approval-border);
  border-radius: 8px;
  color: var(--approval-text);
  background: var(--approval-surface);
  font-weight: 750;
}
.approval-shell .main { width: 100%; max-width: 1600px; margin: 0; padding: 30px 40px 58px; }
.approval-tasks-content,
.approval-task-detail,
.approval-task-placeholder { width: min(100%,920px); margin-inline: auto; }
.approval-tasks-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.approval-tasks-heading h1,
.approval-task-detail h1,
.approval-task-placeholder h1 { margin-block: 8px; color: var(--approval-text); overflow-wrap: anywhere; }
.approval-tasks-heading p,
.approval-task-detail > p,
.approval-task-placeholder > p { color: var(--approval-muted); }
.approval-shell .eyebrow,
.approval-task-kind { color: var(--approval-accent); font-size: 12px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.approval-task-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 28px 18px;
}
.approval-task-filters button { flex: 0 1 auto; }
.approval-task-filters button[aria-pressed="true"] {
  border-color: var(--approval-accent);
  color: var(--approval-text);
  background: color-mix(in srgb,var(--approval-accent) 14%,var(--approval-surface));
}
.approval-task-filters button span { display: inline-grid; min-width: 24px; min-height: 24px; place-items: center; margin-left: 4px; border-radius: 999px; background: var(--approval-surface-soft); }
.approval-shell .table-card { margin-top: 24px; }
.approval-shell .approval-task-table { min-width: 780px; }
.approval-shell .approval-task-table td { cursor: default; }
.approval-shell .approval-task-table .type-pill { display: inline-flex; }
.approval-shell .approval-task-table .subject a { color: inherit; text-decoration: none; }
.approval-shell .approval-task-table .subject a:hover { text-decoration: underline; text-underline-offset: 3px; }
.approval-task-list,
.approval-comment-history,
.approval-assignment-list,
.approval-audit-list { margin: 0; padding: 0; list-style: none; }
.approval-task-list { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,280px),1fr)); gap: 14px; }
.approval-task-card { display: flex; }
.approval-task-card > a {
  width: 100%;
  min-height: 184px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--approval-border);
  border-radius: 12px;
  color: var(--approval-text);
  background: var(--approval-surface);
  box-shadow: var(--approval-shadow);
  text-decoration: none;
}
.approval-task-card h2 { margin: 0; font-size: 19px; overflow-wrap: anywhere; }
.approval-task-status { color: var(--approval-text); }
.approval-task-card dl,
.approval-task-detail-meta,
.approval-task-readable dl,
.approval-assignment-list dl { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px 18px; margin: 4px 0 0; }
.approval-task-card dl { margin-top: auto; }
.approval-task-card dl div,
.approval-task-detail-meta div,
.approval-task-readable dl div,
.approval-assignment-list dl div { display: grid; gap: 2px; }
.approval-shell dt,
.approval-request-dialog dt { color: var(--approval-muted); font-size: 12px; }
.approval-shell dd,
.approval-request-dialog dd { margin: 0; overflow-wrap: anywhere; }
.approval-task-capabilities { display: flex; flex-wrap: wrap; gap: 6px; }
.approval-task-capabilities span {
  padding: 4px 8px;
  border: 1px solid var(--approval-border);
  border-radius: 999px;
  background: var(--approval-surface-soft);
  font-size: 12px;
}
.approval-task-back {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  color: var(--approval-text);
  font-weight: 750;
}
.approval-task-detail,
.approval-task-placeholder {
  padding: clamp(20px,4vw,38px);
  border: 1px solid var(--approval-border);
  border-radius: 14px;
  background: var(--approval-surface);
  box-shadow: var(--approval-shadow);
}
.approval-shell .approval-task-detail { padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.approval-shell .approval-detail-topbar { margin-bottom: 24px; }
.approval-shell .approval-detail-topbar .approval-task-back { min-height: 0; margin: 0 0 12px; color: var(--ink); font-size: 13px; }
.approval-shell .approval-detail-topbar .actions { position: absolute; right: 28px; top: 32px; }
.approval-shell .approval-detail-content { margin: 0; padding: 26px 29px; }
.approval-settings-form { display: grid; gap: 16px; }
.approval-profile-summary { display: grid; grid-template-columns: 72px minmax(0,1fr); gap: 18px; align-items: center; padding: 22px 26px; }
.approval-profile-summary .large-avatar { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; color: #1f1f1f; background: var(--mist); font-weight: 900; }
.approval-profile-summary h2 { margin: 0 0 4px; }
.approval-profile-summary p { margin: 0 0 12px; color: var(--muted); }
.approval-profile-summary dl { display: flex; flex-wrap: wrap; gap: 8px 24px; margin: 0; }
.approval-profile-summary dl div { display: grid; gap: 2px; }
.approval-profile-summary dt { color: var(--muted); font-size: 12px; }
.approval-profile-summary dd { margin: 0; font-weight: 700; }
.approval-settings-section { margin: 0; }
.approval-settings-actions { margin: 0; padding-top: 0; }
.approval-task-detail-meta { margin-block: 24px; padding-block: 18px; border-block: 1px solid var(--approval-border); }
.approval-task-stale,
.approval-shell .form-success,
.approval-shell .form-error {
  display: grid;
  gap: 4px;
  margin-block: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--approval-accent);
  color: var(--approval-text);
  background: var(--approval-surface-soft);
}
.approval-task-readable { display: grid; gap: 18px; }
.approval-task-readable > section,
.approval-comments,
.approval-comment-compose,
.approval-decision {
  padding-block: 20px;
  border-top: 1px solid var(--approval-border);
}
.approval-task-readable p,
.approval-task-readable .rich-content,
.approval-comment-history p,
.approval-audit-list p { overflow-wrap: anywhere; }
.approval-comment-history { display: grid; gap: 10px; margin-top: 14px; }
.approval-comment-history li,
.approval-assignment-list > li,
.approval-audit-list > li { padding: 14px; border: 1px solid var(--approval-border); border-radius: 10px; background: var(--approval-surface-soft); }
.approval-comment-history p,
.approval-audit-list p { margin: 0 0 6px; white-space: pre-wrap; }
.approval-comment-history time,
.approval-audit-list time { color: var(--approval-muted); font-size: 12px; }
.approval-comment-compose form,
.approval-decision form { display: grid; gap: 10px; margin-top: 14px; }
.approval-comment-compose textarea,
.approval-decision textarea {
  width: 100%;
  min-height: 128px;
  padding: 12px;
  resize: vertical;
  color: var(--approval-text);
  border-color: var(--approval-border);
  background: var(--approval-surface);
}
.approval-decision-choices { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.approval-shell .btn,
.approval-shell button,
.approval-shell textarea { min-height: 44px; }
.approval-shell .btn-primary,
.approval-decision-choices button[aria-pressed="true"] {
  border-color: var(--approval-accent);
  color: #fff;
  background: var(--approval-accent);
  box-shadow: none;
}
.approval-shell .empty { overflow-wrap: anywhere; }
.approval-shell a:focus-visible,
.approval-shell button:focus-visible,
.approval-shell textarea:focus-visible,
.approval-request-dialog a:focus-visible,
.approval-request-dialog button:focus-visible,
.approval-request-dialog input:focus-visible,
.approval-request-dialog select:focus-visible,
.approval-request-dialog textarea:focus-visible,
.approval-request-dialog [tabindex]:focus-visible {
  outline: 3px solid var(--approval-accent);
  outline-offset: 3px;
  box-shadow: none;
}
#approval-task-title:focus {
  outline: 3px solid var(--approval-accent);
  outline-offset: 6px;
  border-radius: 2px;
}

.approval-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(11,15,19,.68);
}
.approval-request-dialog {
  position: relative;
  width: min(680px,100%);
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: var(--card);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  overscroll-behavior: contain;
}
.approval-request-dialog h2 { margin: 0 48px 8px 0; }
.approval-request-dialog > p { margin: 0 0 22px; color: var(--muted); line-height: 1.5; }
.approval-request-dialog > section { min-width: 0; padding-block: 20px; border-top: 1px solid var(--line); }
.approval-dialog-close { position: absolute; top: 14px; right: 14px; width: 44px; min-height: 44px; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); background: var(--card); font-size: 24px; }
.approval-request-dialog fieldset { display: grid; gap: 6px; margin: 18px 0; padding: 12px 16px; border: 1px solid var(--line); border-radius: 12px; }
.approval-request-dialog fieldset label { min-height: 44px; display: flex; align-items: center; gap: 10px; }
.approval-request-dialog input[type="checkbox"] { width: 22px; height: 22px; flex: 0 0 22px; }
.approval-request-dialog select,
.approval-request-dialog textarea { min-height: 44px; }
.approval-assignment-list,
.approval-audit-list { display: grid; gap: 12px; }
.approval-assignment-list > li { display: grid; gap: 12px; }
.approval-assignment-list > li > div:first-child,
.approval-audit-list > li > div:first-child { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 6px 12px; }
.approval-assignment-list p { margin: 0; overflow-wrap: anywhere; }
.approval-assignment-list .btn { min-height: 44px; justify-self: start; }
.approval-dialog-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; margin-top: 22px; }
.approval-dialog-actions .btn { min-height: 44px; }
.approval-request-dialog .btn-primary {
  color: #fff;
  border-color: var(--approval-accent);
  background: var(--approval-accent);
  box-shadow: none;
}
.approval-request-dialog input:focus,
.approval-request-dialog select:focus,
.approval-request-dialog textarea:focus {
  border-color: var(--approval-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb,var(--approval-accent) 18%,transparent);
}
.approval-request-dialog .form-error { color: var(--ink); border-left: 4px solid var(--approval-accent); }
.approval-request-dialog[aria-busy="true"] { cursor: progress; }
.approval-request-dialog[aria-busy="true"] button { cursor: wait; }


html[data-theme="dark"] .approval-shell,
html[data-theme="dark"] .approval-request-dialog {
  --approval-shadow: 0 18px 48px rgba(0,0,0,.3);
}
html[data-theme="dark"] .approval-shell { color-scheme: dark; color: var(--approval-text); background: var(--approval-bg); }
html[data-theme="dark"] .approval-shell-header,
html[data-theme="dark"] .approval-task-card > a,
html[data-theme="dark"] .approval-task-detail,
html[data-theme="dark"] .approval-task-placeholder { color: var(--approval-text); border-color: var(--approval-border); background: var(--approval-surface); }
html[data-theme="dark"] .approval-shell button,
html[data-theme="dark"] .approval-shell .btn,
html[data-theme="dark"] .approval-shell textarea { color: var(--approval-text); border-color: var(--approval-border); background: var(--approval-surface); }
html[data-theme="dark"] .approval-shell .btn-primary,
html[data-theme="dark"] .approval-decision-choices button[aria-pressed="true"] { color: #fff; border-color: var(--approval-accent); background: var(--approval-accent); }
html[data-theme="dark"] .approval-shell .sidebar-profile-link,
html[data-theme="dark"] .approval-shell .logout-button { border-color: transparent; color: #fff; background: transparent; }
html[data-theme="dark"] .approval-shell .logout-button:hover { background: rgba(31,31,31,.22); }
html[data-theme="dark"] .approval-request-dialog { color-scheme: dark; color: var(--ink); border-color: var(--line); background: var(--card); }
html[data-theme="dark"] .approval-request-dialog .btn-primary { color: #fff; border-color: var(--approval-accent); background: var(--approval-accent); }

@media (max-width: 600px) {
  .approval-shell-header { min-height: 0; align-items: flex-start; flex-direction: column; padding: 14px 16px; }
  .approval-shell-account { width: 100%; justify-content: space-between; text-align: left; }
  .approval-shell .main { padding: 24px 16px 40px; }
  .approval-task-filters { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .approval-task-filters button { width: 100%; }
  .approval-task-card > a { min-height: 0; padding: 18px; }
  .approval-task-card dl,
  .approval-task-detail-meta,
  .approval-task-readable dl,
  .approval-assignment-list dl { grid-template-columns: 1fr; }
  .approval-task-detail,
  .approval-task-placeholder { padding: 18px 14px; border-radius: 10px; }
  .approval-decision-choices,
  .approval-decision-choices .btn,
  .approval-comment-compose .btn { width: 100%; }
  .approval-dialog-backdrop { align-items: end; padding: 0; }
  .approval-request-dialog { width: 100%; max-height: 94vh; max-height: 94dvh; padding: 22px 16px; border-radius: 18px 18px 0 0; }
  .approval-dialog-actions { flex-direction: column-reverse; }
  .approval-dialog-actions .btn,
  .approval-assignment-list .btn { width: 100%; min-height: 48px; }
}
@media (max-width: 360px) {
  .approval-task-filters { grid-template-columns: 1fr; }
  .approval-shell-account { align-items: stretch; flex-direction: column; }
  .approval-shell-account button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .approval-shell *,
  .approval-shell *::before,
  .approval-shell *::after,
  .approval-dialog-backdrop *,
  .approval-dialog-backdrop *::before,
  .approval-dialog-backdrop *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Canonieke app-shell: gedeeld door demo, online editor en persoonlijke Lezer. */
.shell {
  --sidebar-width: 76px;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  transition: grid-template-columns .22s ease;
}
.shell:has(.sidebar:hover),
.shell:has(.sidebar:focus-within) { --sidebar-width: 236px; }
.sidebar {
  width: var(--sidebar-width);
  padding: 18px 14px 16px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  box-shadow: none;
  transition: width .22s ease, background-color .2s ease;
}
.sidebar::before,
.sidebar::after,
.brand-motto { display: none; }
.brand-lockup {
  min-height: 82px;
  justify-content: center;
  gap: 12px;
  padding: 4px 0 18px;
}
.organization-brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 7px;
  border: 0;
  border-radius: 12px;
  background: color-mix(in srgb, var(--green) 8%, var(--card));
}
.organization-brand-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.powered-by,
.environment-name,
.sidebar-profile-link > span:last-child,
.sidebar-user .user-actions {
  width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .14s ease;
}
.nav { gap: 3px; }
.nav button {
  min-height: 42px;
  justify-content: center;
  gap: 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0;
}
.nav .icon { width: 21px; height: 21px; flex: none; }
.shell-spacer { flex: 1 1 auto; }
.sidebar-foot {
  position: relative;
  margin-top: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.sidebar-user { display: flex; justify-content: center; }
.sidebar-profile-link { min-width: 34px; display: flex; gap: 0; }
.shell:has(.sidebar:hover) .brand-lockup,
.shell:has(.sidebar:focus-within) .brand-lockup { justify-content: flex-start; padding-inline: 10px; }
.shell:has(.sidebar:hover) :is(.powered-by,.environment-name,.sidebar-profile-link > span:last-child,.sidebar-user .user-actions),
.shell:has(.sidebar:focus-within) :is(.powered-by,.environment-name,.sidebar-profile-link > span:last-child,.sidebar-user .user-actions) {
  width: auto;
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
}
.shell:has(.sidebar:hover) .nav button,
.shell:has(.sidebar:focus-within) .nav button { justify-content: flex-start; gap: 11px; font-size: 14px; }
.shell:has(.sidebar:hover) .sidebar-user,
.shell:has(.sidebar:focus-within) .sidebar-user {
  display: grid;
  justify-content: stretch;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
}
.shell:has(.sidebar:hover) .sidebar-foot,
.shell:has(.sidebar:focus-within) .sidebar-foot {
  display: grid;
  gap: 9px;
  padding: 0 12px 9px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.shell:has(.sidebar:hover) .sidebar-profile-link,
.shell:has(.sidebar:focus-within) .sidebar-profile-link {
  display: grid;
  grid-template-columns: 34px minmax(0,1fr);
  gap: 10px;
  color: var(--ink);
}
.shell:has(.sidebar:hover) .sidebar-profile-link small,
.shell:has(.sidebar:focus-within) .sidebar-profile-link small { color: var(--muted); }
.shell:has(.sidebar:hover) .sidebar-user .logout-button,
.shell:has(.sidebar:focus-within) .sidebar-user .logout-button { color: var(--ink); }
.main { grid-column: 2; max-width: 1580px; padding: 28px 36px 56px; }
.main > :is(.topbar,.page-action-row,.dashboard-toolbar,.dashboard-controls,.dashboard-customizer,.dashboard-report-builder,.dashboard-scope,.dashboard-widget-grid,.dashboard-source-note,.kpis,.dashboard-grid,.table-card,.detail-grid,.detail-actions,.form-wrap,.settings-shell,.team-settings,.analytics-summary-grid,.analytics-chart-card,.analytics-split,.statement-browser,.statement-summary,.statement-detail-grid,.journalist-profile-summary,.journalist-stats,.medium-profile-summary,.medium-journalists,.portfolio-grid,.empty) {
  width: 100%;
  max-width: 1440px;
  margin-left: 0;
  margin-right: auto;
}
.topbar {
  min-height: 0;
  padding: 3px 0 24px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.topbar::before,
.topbar::after { display: none; }
.topbar .actions { position: static; margin-left: auto; transform: none; }
.page-action-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 0 0 14px; }
.dashboard-primary-filter { min-width: 0; display: flex; align-items: center; gap: 12px; }
.page-action-menu { position: relative; z-index: 20; width: max-content; margin: 0 0 14px auto; }
.page-action-row .page-action-menu { margin-bottom: 0; }
.page-action-menu summary { min-width: 116px; min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); background: var(--card); font-size: 14px; font-weight: 650; cursor: pointer; list-style: none; }
.page-action-menu summary::-webkit-details-marker { display: none; }
.page-action-items { position: absolute; top: calc(100% + 7px); right: 0; min-width: 238px; display: grid; gap: 4px; padding: 7px; border: 1px solid var(--line); border-radius: 12px; background: var(--card); box-shadow: 0 12px 30px rgba(11,15,25,.12); }
.page-action-items .btn { width: 100%; justify-content: flex-start; border-color: transparent; background: transparent; color: var(--ink); text-align: left; }
.ui-state { display: grid; justify-items: center; gap: 7px; }
.ui-state > span { display: block; max-width: 620px; }
.ui-state > .btn { margin-top: 5px; }
.ui-notice { width: 100%; max-width: 1440px; margin: 0 0 16px; }
.ui-detail-primary,
.ui-detail-secondary { min-width: 0; }
.archive-search-bar { min-width: min(620px,100%); display: grid; grid-template-columns: minmax(220px,1fr) auto; align-items: center; gap: 8px; margin-left: auto; }
.archive-search-status { grid-column: 1/-1; min-height: 16px; color: var(--muted); font-size: 12px; text-align: right; }
.statement-fold-close { width: 100%; min-height: 40px; display: none; align-items: center; justify-content: center; gap: 10px; border: 0; border-top: 1px solid var(--line); color: var(--green); background: var(--card); font: inherit; font-size: 12px; font-weight: 650; cursor: pointer; }
.statement-collapsible[open] > .statement-fold-close { display: flex; }

@media (max-width: 720px) {
  .shell { display: block; --sidebar-width: 100%; }
  .sidebar { position: static; width: 100%; min-height: auto; padding: 13px 14px; overflow: visible; }
  .brand-lockup { min-height: auto; justify-content: flex-start; padding: 2px 4px 11px; }
  .organization-brand-logo { width: 40px; height: 40px; flex-basis: 40px; padding: 8px; }
  html[data-organization-presentation="kngu"] .organization-brand-logo { width: 180px; height: 68px; flex-basis: 180px; padding: 0; }
  .powered-by { width: auto; overflow: visible; opacity: 1; pointer-events: auto; }
  .nav { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
  .nav button { min-height: 40px; flex: none; justify-content: flex-start; gap: 9px; padding: 9px 12px; font-size: 14px; white-space: nowrap; }
  .shell-spacer,
  .sidebar-foot { display: none; }
  .main { grid-column: 1; max-width: none; padding: 22px 15px 42px; }
  .topbar { flex-direction: column; align-items: stretch; gap: 20px; }
  .topbar .actions,
  .topbar .actions .btn,
  .page-action-menu { width: 100%; margin-left: 0; }
  .page-action-row { align-items: stretch; flex-direction: column; }
  .dashboard-primary-filter { justify-content: space-between; }
  .page-action-items { position: static; margin-top: 7px; }
  .archive-toolbar { align-items: stretch; flex-direction: column; }
  .archive-search-bar { min-width: 0; grid-template-columns: 1fr; margin-left: 0; }
  .archive-search-status { grid-column: 1; text-align: left; }
}

/* Vaste componentmaten: presentatie- of organisatiebranding mag deze geometrie niet overschrijven. */
.btn { min-height:var(--size-control);padding-inline:14px;border-radius:var(--shape-control);corner-shape:squircle; }
.card,.unsaved-dialog,.statement-picker-dialog,.approval-request-dialog { border-radius:var(--shape-panel);corner-shape:squircle; }
input,textarea,select,.search input,.rich-editor-shell { border-radius:var(--shape-control);corner-shape:squircle; }

/* Tenant-teamcontext: dezelfde shell, met alleen een contextwisselaar. */
.environment-switcher {
  position: relative;
  z-index: 6;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.environment-switcher-trigger,
.environment-options button {
  width: 100%;
  min-height: 44px;
  display: grid;
  grid-template-columns: 28px minmax(0,1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--card);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.environment-switcher-trigger {
  box-shadow: 0 8px 24px rgba(31,31,31,.1);
}
.environment-switcher-trigger strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.environment-option-logo {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: var(--orange,#ff6000);
  font-size: 12px;
  font-weight: 700;
}
.environment-option-logo.has-logo {
  border-radius: 0;
  background: transparent;
}
.environment-option-logo img { width: 100%; height: 100%; object-fit: contain; }
.environment-options { position: absolute; z-index: 8; left: 0; right: 0; bottom: calc(100% + 7px); display: grid; gap: 3px; padding: 7px; visibility: hidden; opacity: 0; pointer-events: none; border: 1px solid var(--line); border-radius: 14px; background: var(--card); box-shadow: 0 16px 32px rgba(31,31,31,.18); }
.environment-switcher.open .environment-options { visibility: visible; opacity: 1; pointer-events: auto; }
.environment-options button { min-height: 40px; border-color: transparent; border-radius: 9px; }
.environment-options button:hover,
.environment-options button[aria-checked="true"] { background: var(--mist,#e6f1eb); }
.environment-option-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.shell:has(.sidebar:hover) .environment-switcher,
.shell:has(.sidebar:focus-within) .environment-switcher { width: 100%; height: auto; overflow: visible; opacity: 1; pointer-events: auto; margin-bottom: 9px; }
.shell[data-environment^="oranje-"] .organization-brand-logo { width: 76px; height: 76px; flex-basis: 76px; padding: 0; background: transparent; }

/* Interne accreditatiewerkvoorraad. */
.accreditation-page { width: 100%; max-width: 1440px; display: grid; gap: 18px; }
.accreditation-private-note { margin: 0; font-size: 13px; font-weight: 700; }
.accreditation-metrics { width: 100%; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.accreditation-metrics > :is(div,button) { min-height: 108px; display: grid; align-content: center; justify-items: start; gap: 7px; padding: 18px; border: 1px solid transparent; border-radius: 16px; color: var(--ink); background: var(--card); font: inherit; text-align: left; }
.accreditation-metrics > button { cursor: pointer; transition: border-color .16s ease,transform .16s ease,box-shadow .16s ease; }
.accreditation-metrics > button:hover { border-color: var(--line); box-shadow: 0 10px 24px rgba(31,31,31,.08); transform: translateY(-1px); }
.accreditation-metrics span { color: var(--muted); font-size: 12px; font-weight: 650; }
.accreditation-metrics b { font-size: 22px; }
.accreditation-metrics small { margin-top: 2px; color: var(--orange,#ff6000); font-size: 11px; font-weight: 750; }
.accreditation-metrics small span { color: inherit; font-size: inherit; }
.accreditation-toolbar { width: 100%; display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; padding: 14px 16px; }
.accreditation-context-controls { min-width: 0; display: flex; align-items: flex-end; gap: 10px; }
.accreditation-event-select { min-width: min(360px,42vw); display: grid; gap: 5px; }
.accreditation-event-select > span,.accreditation-filter-panel label > span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.accreditation-toolbar select,.accreditation-filter-panel select { min-height: 42px; padding-block: 8px; border: 1px solid var(--line); background: var(--mist,#e6f1eb); font-weight: 650; }
.accreditation-filter-button { min-width: 112px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; }
.accreditation-filter-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.accreditation-filter-button b { min-width: 20px; height: 20px; display: grid; place-items: center; border-radius: 999px; color: #fff; background: var(--orange,#ff6000); font-size: 10px; }
.accreditation-filter-button i { margin-left: 2px; color: var(--muted); font-style: normal; transition: transform .16s ease; }
.accreditation-filter-button.active { color: #fff; border-color: var(--ink); background: var(--ink); }
.accreditation-filter-button.active i { color: inherit; transform: rotate(180deg); }
.accreditation-export-actions { display: flex; gap: 8px; margin-left: auto; }
.accreditation-filter-panel { display: grid; grid-template-columns: minmax(210px,1fr) minmax(190px,260px) minmax(190px,260px) auto; align-items: end; gap: 14px; padding: 16px; }
.accreditation-filter-panel > div { align-self: center; display: grid; gap: 3px; }
.accreditation-filter-panel > div span { color: var(--muted); font-size: 12px; }
.accreditation-filter-panel label { display: grid; gap: 5px; }
.accreditation-workspace { width: 100%; display: grid; grid-template-columns: minmax(620px,1fr) minmax(330px,380px); gap: 18px; align-items: start; }
.accreditation-list { overflow: hidden; padding: 20px 10px 14px; }
.accreditation-list > h2,.accreditation-list > p { margin-inline: 10px; }
.accreditation-list > p { color: var(--muted); }
.accreditation-list-head,.accreditation-row { display: grid; grid-template-columns: 1.25fr 1.1fr .9fr 1.05fr .9fr; align-items: center; gap: 12px; }
.accreditation-list-head { padding: 12px 10px 7px; color: var(--muted); font-size: 12px; font-weight: 700; }
.accreditation-row { width: 100%; min-height: 66px; padding: 11px 10px; border: 0; border-radius: 10px; color: var(--ink); background: transparent; font: inherit; text-align: left; cursor: pointer; }
.accreditation-row:hover,.accreditation-row.selected { background: var(--mint,#d8ebe6); }
.accreditation-row span,.accreditation-row time { font-size: 13px; }
.accreditation-status { width: max-content; display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px; border: 1px solid currentColor; border-radius: 999px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.accreditation-status i { width: 7px; height: 7px; border-radius: 999px; background: currentColor; }
.accreditation-status-new { color:#1769aa; }.accreditation-status-review { color:#b45309; }.accreditation-status-approved { color:#16835b; }.accreditation-status-rejected { color:#c62828; }
.accreditation-detail { display: grid; gap: 24px; padding: 20px; }
.accreditation-detail h2 { margin: 0 0 5px; }.accreditation-detail p { margin: 3px 0; }
.field-caption,.zone-fieldset legend { display: block; margin-bottom: 8px; color: var(--muted); font-size: 12px; font-weight: 700; }
.proof-viewer-trigger { width: 100%; display: grid; gap: 3px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: var(--mist,#e6f1eb); text-align: left; cursor: pointer; }
.proof-viewer-trigger small { color: var(--muted); }
.zone-fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.zone-fieldset > div { display: flex; flex-wrap: wrap; gap: 8px; }
.zone-choice input { position: absolute; opacity: 0; pointer-events: none; }
.zone-choice span { display: block; padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; background: var(--mist,#e6f1eb); font-size: 12px; font-weight: 650; cursor: pointer; }
.zone-choice input:checked + span { color: #fff; border-color: var(--orange,#ff6000); background: var(--orange,#ff6000); }
.accreditation-decision-actions { display: flex; justify-content: space-between; gap: 12px; }
.accreditation-event-form { max-width: 920px; padding: 22px; }.accreditation-event-form > p { color: var(--muted); font-size: 13px; }.accreditation-event-admin-list { width: 100%; max-width: 920px; display: grid; gap: 12px; margin-top: 20px; }.accreditation-event-admin { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px; }.accreditation-event-admin h2 { margin: 6px 0; }.accreditation-event-admin > div:last-child { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.accreditation-event-overview { width: 100%; max-width: 1440px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.accreditation-event-overview-card { padding: 0; overflow: hidden; }
.accreditation-event-overview-card > button { width: 100%; min-height: 250px; display: grid; grid-template-columns: 1fr auto; align-content: start; gap: 9px 18px; padding: 24px; border: 0; color: var(--ink); background: transparent; font: inherit; text-align: left; cursor: pointer; }
.accreditation-event-overview-card > button:hover { background: color-mix(in srgb,var(--mist,#e6f1eb) 72%,transparent); }
.accreditation-event-state { grid-column: 1/-1; width: max-content; padding: 5px 9px; border-radius: 999px; color: #16835b; background: color-mix(in srgb,#16835b 10%,transparent); font-size: 11px; font-weight: 750; }
.accreditation-event-overview-card h2,.accreditation-event-overview-card p,.accreditation-event-overview-card small { grid-column: 1/-1; margin: 0; }
.accreditation-event-overview-card h2 { margin-top: 5px; font-size: 21px; }
.accreditation-event-overview-card p { color: var(--ink); }
.accreditation-event-overview-card small { color: var(--muted); }
.accreditation-event-overview-card dl { grid-column: 1/-1; display: flex; gap: 28px; margin: 14px 0 6px; padding-top: 14px; border-top: 1px solid var(--line); }
.accreditation-event-overview-card dl div { display: grid; gap: 4px; }
.accreditation-event-overview-card dt { color: var(--muted); font-size: 11px; font-weight: 650; }
.accreditation-event-overview-card dd { margin: 0; font-size: 20px; font-weight: 800; }
.accreditation-event-overview-card > button > strong { grid-column: 1/-1; color: var(--orange,#ff6000); font-size: 12px; }
.proof-modal-backdrop { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(31,31,31,.58); }
.proof-modal { width: min(900px,100%); min-height: 560px; display: grid; grid-template-rows: auto 1fr auto; gap: 14px; padding: 20px; border-radius: 18px; background: var(--card); }
.proof-modal > div:first-child { display: flex; justify-content: space-between; align-items: center; }.proof-modal iframe { width: 100%; height: 100%; border: 1px solid var(--line); }.proof-demo-placeholder { display: grid; place-items: center; align-content: center; gap: 8px; background: var(--mist,#e6f1eb); }

/* Vertrouwelijke A4-landscape-uitdraai voor organisatie en receptie. */
.accreditation-pdf-preview { min-height: 100vh; padding: 12px; color: #1a1a1a; background: #dde7e1; font-family: Inter,Arial,sans-serif; }
.accreditation-pdf-preview .print-actions { position: sticky; z-index: 2; top: 0; display: flex; justify-content: center; gap: 10px; margin: -12px -12px 12px; padding: 12px; background: #1f1f1f; }
.accreditation-pdf-preview .pdf-page { width: 297mm; min-height: 210mm; display: flex; flex-direction: column; margin: 12px auto; padding: 12mm 13mm 9mm; background: #fff; box-shadow: 0 16px 40px rgba(31,31,31,.16); page-break-after: always; }
.accreditation-pdf-preview .pdf-page:last-child { page-break-after: auto; }
.accreditation-pdf-preview .pdf-page > header { min-height: 25mm; display: flex; align-items: flex-end; justify-content: space-between; gap: 20mm; }
.accreditation-pdf-preview .pdf-page h1 { margin: 0; color: #1a1a1a; font: 800 24px/1.1 Inter,Arial,sans-serif; }
.accreditation-pdf-preview .pdf-page header p { margin: 4px 0 0; color: #555; font-size: 14px; font-weight: 500; }
.accreditation-pdf-preview .team-logo { width: 19mm; height: 25mm; display: grid; place-items: center; }
.accreditation-pdf-preview .team-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.accreditation-pdf-preview .orange-rule { height: 2px; margin-top: 1mm; background: #ff6000; }
.accreditation-pdf-preview .document-rule { height: 1px; margin-top: 1mm; background: #1f1f1f; }
.accreditation-pdf-preview .approved-total { margin: 1mm 0 4mm; color: #777; font-size: 9px; font-weight: 700; }
.accreditation-pdf-preview .pdf-page main { flex: 1; display: grid; align-content: start; gap: 4mm; }
.accreditation-pdf-preview .media-section { break-inside: avoid; }
.accreditation-pdf-preview .section-title { display: flex; align-items: center; gap: 8px; margin-bottom: 2mm; font-size: 12px; }
.accreditation-pdf-preview .section-title span { padding: 1px 6px; border-radius: 10px; color: #555; background: #d8ebe6; font-size: 9px; font-weight: 700; }
.accreditation-pdf-preview .section-title i { height: 1px; flex: 1; background: #d1dcd6; }
.accreditation-pdf-preview table { width: 100%; overflow: hidden; border: 1px solid #d1dcd6; border-radius: 6px; border-collapse: separate; border-spacing: 0; font-size: 9.5px; }
.accreditation-pdf-preview th,.accreditation-pdf-preview td { height: 23px; padding: 6px 8px; text-align: left; }
.accreditation-pdf-preview th { color: #555; background: #f2f8f5; border-bottom: 1px solid #d1dcd6; font-size: 9px; text-transform: uppercase; }
.accreditation-pdf-preview th:nth-child(1),.accreditation-pdf-preview td:nth-child(1) { width: 21%; }
.accreditation-pdf-preview th:nth-child(2),.accreditation-pdf-preview td:nth-child(2) { width: 19%; }
.accreditation-pdf-preview th:nth-child(3),.accreditation-pdf-preview td:nth-child(3) { width: 25%; }
.accreditation-pdf-preview th:nth-child(4),.accreditation-pdf-preview td:nth-child(4) { width: 15%; }
.accreditation-pdf-preview tbody tr:not(:last-child) td { border-bottom: 1px solid #e8efea; }
.accreditation-pdf-preview tr.alternate td { background: #f4f8f6; }
.accreditation-pdf-preview td { overflow-wrap: anywhere; }
.accreditation-pdf-preview .pdf-empty { display: grid; gap: 5px; padding: 18mm; text-align: center; border: 1px solid #d1dcd6; border-radius: 8px; background: #f7faf8; }
.accreditation-pdf-preview .pdf-empty span { color: #555; font-size: 11px; }
.accreditation-pdf-preview .pdf-page footer { display: flex; justify-content: space-between; gap: 10mm; margin-top: 4mm; padding-top: 3mm; border-top: 1px solid #d1dcd6; color: #777; font-size: 9px; }
.accreditation-pdf-preview .pdf-page footer b { color: #555; }

@media print {
  .accreditation-pdf-preview,.accreditation-pdf-preview * { visibility: visible !important; }
  .accreditation-pdf-preview { position: absolute; inset: 0; padding: 0; background: #fff; }
  .accreditation-pdf-preview .print-actions { display: none; }
  .accreditation-pdf-preview .pdf-page { margin: 0; box-shadow: none; }
  @page { size: A4 landscape; margin: 0; }
}

@media (max-width: 1180px) {
  .accreditation-pdf-preview { overflow-x: auto; }
  .accreditation-pdf-preview .pdf-page { margin-inline: 0; }
}

/* Externe tenantpagina voor journalisten. */
.accreditation-portal { min-height: 100vh; color: #1f1f1f; background: #e6f1eb; }
.accreditation-portal > header { min-height: 84px; display: flex; align-items: center; justify-content: space-between; padding: 18px clamp(20px,4vw,72px); background: #f2f8f5; }
.accreditation-portal > header div { display: flex; align-items: baseline; gap: 7px; }.accreditation-portal > header b { color: #ff6000; font-size: 19px; }.accreditation-portal > header button { border: 0; border-bottom: 1px solid; background: transparent; }
.accreditation-portal main { position: relative; max-width: 1320px; margin: 0 auto; padding: 42px clamp(20px,4vw,72px) 64px; }
.portal-title > span,.portal-event-summary span,.portal-event-card span { color: #ff6000; font-size: 12px; font-weight: 750; text-transform: uppercase; }.portal-title h1 { margin: 9px 0 48px; font-size: clamp(30px,4vw,44px); }
.portal-notification { position: absolute; top: 48px; right: clamp(20px,4vw,72px); width: 300px; min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px; border-radius: 16px; background: #f2f8f5; font-weight: 650; }
.portal-notification input { position: relative; flex: 0 0 52px; width: 52px; height: 30px; appearance: none; border: 0; border-radius: 999px; background: #cbd9d2; cursor: pointer; transition: background .18s ease; }
.portal-notification input::after { content: ''; position: absolute; top: 4px; left: 4px; width: 22px; height: 22px; border-radius: 50%; background: #f2f8f5; box-shadow: 0 1px 4px rgba(31,31,31,.18); transition: transform .18s ease; }
.portal-notification input:checked { background: #ff6000; }
.portal-notification input:checked::after { transform: translateX(22px); }
.portal-events { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.portal-event-card { display: grid; grid-template-columns: 66px 1fr; gap: 16px; padding: 22px; border-radius: 16px; background: #f2f8f5; }.portal-event-card img { width: 60px; height: 60px; object-fit: contain; }.portal-event-card h2 { margin: 6px 0 16px; font-size: 18px; }.portal-event-card p { margin: 0 0 8px; }.portal-event-card .btn { grid-column: 1/-1; width: max-content; }
.portal-own-applications { margin-top: 28px; padding: 22px; border-radius: 16px; background: #f2f8f5; }.portal-application-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px; border-radius: 12px; background: #e6f1eb; }.portal-application-row + .portal-application-row { margin-top: 10px; }.portal-application-row div { display: grid; gap: 6px; }.portal-application-row span { color: #4d4d4d; font-size: 13px; }
.portal-back { margin-bottom: 24px; border: 0; background: transparent; font-weight: 650; cursor: pointer; }.portal-event-summary { display: flex; align-items: center; gap: 20px; padding: 24px; border-radius: 16px; background: #f2f8f5; }.portal-event-summary img { width: 76px; height: 76px; object-fit: contain; }.portal-event-summary h1 { margin: 6px 0; font-size: 22px; }
.portal-form-layout { display: grid; grid-template-columns: minmax(0,2fr) minmax(280px,1fr); gap: 28px; margin-top: 28px; align-items: start; }.portal-application-form,.portal-how { padding: 24px; border-radius: 16px; background: #f2f8f5; }.portal-application-form > p { color: #4d4d4d; }.proof-upload-field { margin-top: 18px; padding: 16px; border-radius: 12px; background: #e6f1eb; }.proof-upload-field input { padding: 0; border: 0; background: transparent; }.privacy-retention-note { margin-top: 18px; font-size: 13px; }.portal-privacy-choice { display: flex; gap: 10px; margin: 16px 0; font-size: 13px; }.portal-how ol { display: grid; gap: 22px; padding-left: 24px; line-height: 1.5; }
.portal-login-main { min-height: calc(100vh - 84px); display: grid; place-items: center; }.portal-login-card { width: min(520px,100%); padding: 30px; border-radius: 18px; background: #f2f8f5; }.portal-login-card > span { color:#ff6000;font-size:12px;font-weight:750; }.portal-login-card h1 { margin:9px 0 12px; }.portal-login-card form { display:grid;gap:14px;margin-top:22px; }

/* Figma 16:36 en 16:93: journalistoverzicht, aanvraagflow en detailweergave. */
.accreditation-portal main { max-width: 1440px; }
.portal-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; margin-bottom: 10px; }
.portal-title h1 { margin-bottom: 34px; font-size: clamp(30px,3vw,34px); }
.portal-title p { margin: -23px 0 32px; color: #4d4d4d; }
.portal-title-row .portal-notification { position: static; flex: 0 0 348px; width: 348px; min-height: 94px; margin: 5px 0 0; padding: 22px; border-radius: 14px; }
.portal-title-row .portal-notification input { flex: 0 0 52px; width: 52px; height: 30px; }
.portal-home-grid { display: grid; grid-template-columns: minmax(0,864px) minmax(300px,400px); gap: 32px; align-items: start; }
.portal-home-primary { min-width: 0; }
.portal-section-heading { min-height: 32px; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 10px; }
.portal-section-heading h2 { margin: 0; font-size: 20px; }
.portal-section-heading button { border: 0; color: #1f1f1f; background: transparent; font: inherit; font-size: 14px; font-weight: 650; text-decoration: underline; cursor: pointer; }
.portal-section-heading button span { color: #ff6000; text-decoration: none; }
.portal-event-card { min-height: 288px; display: grid; grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; gap: 14px; padding: 18px 20px 20px; border-radius: 18px; }
.portal-event-identity { display: grid; grid-template-columns: 76px minmax(0,1fr); gap: 16px; align-items: start; }
.portal-event-identity img,.portal-event-card .portal-event-identity img { width: 74px; height: 74px; object-fit: contain; }
.portal-event-identity h2 { margin: 5px 0 0; font-size: 17px; }
.portal-event-meta { display: grid; align-content: start; gap: 7px; }
.portal-event-meta b,.portal-event-meta span { color: #1f1f1f; font-size: 14px; text-transform: none; }
.portal-event-meta span { font-weight: 400; }
.portal-event-meta small { margin-top: 7px; color: #1f1f1f; font-size: 12px; font-weight: 650; }
.portal-event-card .btn { align-self: end; min-width: 214px; }
.portal-own-applications { margin-top: 18px; padding: 20px; }
.portal-own-applications > h2 { margin: 0 0 16px; font-size: 20px; }
.portal-home-grid > .portal-own-applications { margin-top: 0; border-radius: 18px; }
.portal-application-list { display: grid; gap: 12px; }
.portal-application-row { width: 100%; display: grid; grid-template-columns: minmax(0,1fr) auto 18px; align-items: center; gap: 14px; margin: 0; padding: 16px; border: 0; color: #1f1f1f; background: #e6f1eb; font: inherit; text-align: left; cursor: pointer; }
.portal-application-row + .portal-application-row { margin-top: 0; }
.portal-application-row:hover { background: #d8ebe6; }
.portal-application-row:focus-visible { outline: 3px solid rgba(255,96,0,.28); outline-offset: 2px; }
.portal-application-copy { min-width: 0; display: grid; gap: 8px; }
.portal-application-copy strong { font-size: 16px; }
.portal-application-copy > span { min-width: 0; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; color: #4d4d4d; font-size: 13px; }
.portal-application-copy > span b { color: inherit; font-weight: 650; }
.portal-application-copy i { width: 4px; height: 4px; border-radius: 50%; background: #738078; }
.portal-row-arrow { color: #ff6000; font-size: 18px; }
.portal-application-row-compact { grid-template-columns: minmax(0,1fr) auto; padding: 14px; }
.portal-application-row-compact .portal-row-arrow { display: none; }
.portal-application-row-compact .portal-application-copy strong { font-size: 14px; }
.portal-application-row-compact .portal-application-copy > span { gap: 8px; }
.portal-events-all { grid-template-columns: repeat(3,minmax(0,1fr)); }
.portal-all-events-title h1 { margin-bottom: 28px; }
.portal-application-detail-hero { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px; border-radius: 18px; background: #f2f8f5; }
.portal-application-detail-hero > div > span { color: #ff6000; font-size: 12px; font-weight: 750; letter-spacing: .08em; }
.portal-application-detail-hero h1 { margin: 7px 0 5px; font-size: 26px; }
.portal-application-detail-hero p { margin: 0; color: #4d4d4d; }
.portal-application-detail-grid { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(320px,.85fr); gap: 24px; margin-top: 24px; align-items: start; }
.portal-detail-card { padding: 24px; border-radius: 18px; background: #f2f8f5; }
.portal-detail-card > h2 { margin: 0 0 20px; font-size: 20px; }
.portal-detail-fields { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; margin: 0; overflow: hidden; border: 1px solid #d4e3dc; border-radius: 12px; background: #d4e3dc; }
.portal-detail-fields > div { min-width: 0; padding: 14px; background: #e6f1eb; }
.portal-detail-fields dt,.portal-event-detail dt { color: #58615c; font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .04em; }
.portal-detail-fields dd,.portal-event-detail dd { margin: 5px 0 0; overflow-wrap: anywhere; font-weight: 650; }
.portal-proof-receipt { display: grid; gap: 5px; margin-top: 18px; padding: 16px; border-radius: 12px; background: #e6f1eb; }
.portal-proof-receipt span,.portal-zone-summary > span { color: #58615c; font-size: 12px; font-weight: 750; }
.portal-proof-receipt small { color: #4d4d4d; }
.portal-event-detail-heading { display: grid; grid-template-columns: 66px minmax(0,1fr); gap: 14px; align-items: center; margin-bottom: 18px; }
.portal-event-detail-heading img { width: 64px; height: 64px; object-fit: contain; }
.portal-event-detail-heading span { color: #ff6000; font-size: 12px; font-weight: 750; text-transform: uppercase; }
.portal-event-detail-heading h2 { margin: 5px 0 0; font-size: 18px; }
.portal-event-detail dl { display: grid; gap: 12px; margin: 0; }
.portal-event-detail dl > div { padding-bottom: 12px; border-bottom: 1px solid #d4e3dc; }
.portal-zone-summary { margin-top: 18px; }
.portal-zone-summary > div { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 9px; }
.portal-zone-summary > div span { padding: 7px 10px; border-radius: 999px; background: #d8ebe6; font-size: 12px; font-weight: 700; }
.portal-zone-summary em { color: #4d4d4d; font-size: 13px; font-style: normal; }
.portal-how ol { counter-reset: portal-step; display: grid; gap: 22px; padding: 0; list-style: none; }
.portal-how li { counter-increment: portal-step; display: grid; grid-template-columns: 30px minmax(0,1fr); gap: 14px; align-items: start; }
.portal-how li::before { content: counter(portal-step); width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #d8ebe6; font-size: 12px; font-weight: 700; }

@media (max-width: 980px) {
  .team-environment-settings { grid-template-columns: 1fr; }
  .accreditation-metrics { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .accreditation-toolbar { align-items: stretch; flex-wrap: wrap; }.accreditation-export-actions { width: 100%; margin-left: 0; }
  .accreditation-workspace { grid-template-columns: 1fr; }.accreditation-list { overflow-x: auto; }.accreditation-list-head,.accreditation-row { min-width: 760px; }
  .portal-notification { position: static; width: 100%; margin-bottom: 26px; }.portal-events,.portal-form-layout,.portal-home-grid,.portal-application-detail-grid { grid-template-columns: 1fr; }
  .portal-title-row { display: block; }.portal-title-row .portal-notification { width: 100%; margin: 0 0 28px; }.portal-home-grid > .portal-own-applications { margin-top: 0; }.portal-events-all { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .environment-switcher { display: none !important; }
  .shell[data-environment^="oranje-"] .organization-brand-logo { width: 48px; height: 48px; flex-basis: 48px; }
  .accreditation-metrics { grid-template-columns: 1fr 1fr; gap: 10px; }.accreditation-toolbar,.accreditation-context-controls { align-items: stretch; flex-direction: column; }.accreditation-event-select { width: 100%; min-width: 0; }.accreditation-filter-button { width: 100%; }.accreditation-export-actions { width: 100%; flex-wrap: wrap; margin-left: 0; }.accreditation-export-actions .btn { flex: 1; }.accreditation-filter-panel { grid-template-columns: 1fr; }.accreditation-event-overview { grid-template-columns: 1fr; }
  .accreditation-portal > header { align-items: flex-start; flex-direction: column; gap: 12px; }.accreditation-portal main { padding-top: 28px; }.portal-title h1 { margin-bottom: 28px; }.portal-event-summary { align-items: flex-start; }.portal-application-form .grid-2,.portal-detail-fields { grid-template-columns: 1fr; }.portal-events-all { grid-template-columns: 1fr; }.portal-section-heading { align-items: flex-start; flex-direction: column; }.portal-application-row { grid-template-columns: minmax(0,1fr) auto; }.portal-application-row .accreditation-status { grid-column: 1; width: max-content; }.portal-row-arrow { grid-column: 2; grid-row: 1 / span 2; }.portal-application-detail-hero { align-items: flex-start; flex-direction: column; }
}
