/* ---------- BASISLAYOUT ---------- */

body {
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    color: #14292F;
    background-color: #ffffff;
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
  }
  
/* ---------- NAVIGATIEBALK LINKS ---------- */
nav {
  flex-shrink: 0;
  width: 200px;
  background-color: #045E76;
  color: white;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh; /* moderne browsers */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  font-size: 13px;
  overflow: hidden; /* scroll alleen in nav-scroll */
}

/* logo + lijn */
.nav-header {
  flex: 0 0 auto;
  padding: 12px;
}

.nav-logo img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* optioneel */
}

/* 1 lijn onder logo */
.nav-hr {
  height: 1px;
  border: 0;
  background: rgba(255,255,255,0.35);
  margin: 12px 0 16px 0;
}

/* scrollcontainer voor de navigatie-items */
.nav-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 12px 16px 12px;
}

nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

nav li {
  margin-bottom: 0.3rem;
}

/* Alle gewone links (subthema’s) → geen achtergrond bij hover */
nav a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
  font-weight: 500;
}
nav a:hover {
  text-decoration: underline; /* of laat dit weg als je geen effect wilt */
  background: none;           /* voorkomt blauwe blok */
}


/* Sectiekoppen zoals 'Home' en 'Effectbeoordelingen' */
nav li.nav-section {
  padding: 0;
  background: none;
}

/* Als er een <a> in zit (zoals bij Home), laat die geen extra padding toevoegen */
nav li.nav-section > a {
  display: block;
  padding: 0.5rem 0.8rem;                 /* voorkomt dubbele hoogte */
  border-radius: 5px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  line-height: 1.2;
  text-decoration: none;
  font-weight: 600;           /* ⬅ match met button hieronder */
}

/* Submenu standaard zichtbaar */
.submenu {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

/* Ingeklapt submenu */
.collapsible.collapsed .submenu {
  display: none;
}

/* Button styling (lijkt op je sectie) */
.collapsible > button {
  display: block;
  width: 100%;
  padding: 0.5rem 0.8rem;
  margin: 0;
  border: 0;
  border-radius: 5px;
  box-sizing: border-box;
  background: rgba(255,255,255,0.05);
  color: #fff;
  text-align: left;
  line-height: 1.2;
  cursor: pointer;

  font: inherit;              /* zelfde familie/grootte als links */
  font-weight: 600;           /* ⬅ zelfde gewicht als Home */
}

nav li.nav-section > a:hover,
.collapsible > button:hover {
  background-color: #4CB5E3;
  color: #fff;
}

/* subniveau links */
nav li a[data-level="3"] {
  margin-left: 1rem;
  font-size: 0.95em;
}
  
  /* ---------- MAIN CONTENT ---------- */
  
  main {
    padding: 0;
    background-color: #ffffff;
    overflow-y: auto;
    min-height: 100vh;
    box-sizing: border-box;
    width: 100%; 
  }
  
  @media (min-width: 901px) {
    main {
      margin-left: 200px;
    }
  }
  
  .main-content {
    padding: 3rem 5rem 3rem 0.5rem; /* top, right, bottom, left */
    margin-left: 120px;
    box-sizing: border-box;
    overflow-wrap: break-word;
  }

  .main-content p {
    word-wrap: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    white-space: normal;
  }
  
/* ---------- KOPPEN ---------- */

h1, h2 {
  color: #045E76;
  border-bottom: 1px solid #BEE4F8;
  padding-bottom: 0.3rem;
  margin-right: 5rem;
}

/* H1 = hoofdtitel, minder ruimte boven banner */
h1 {
  font-size: 2.2rem;
  margin-top: 1rem;      /* minder ruimte bovenaan */
  margin-bottom: 1.5rem; /* iets lucht eronder */
}

/* H2 = sectiekoppen, meer ruimte erboven */
h2 {
  font-size: 1.6rem;
  margin-top: 3rem;   /* extra ruimte boven */
  margin-bottom: 1rem;
}

/* H3 = subsecties, klein beetje ruimte */
h3 {
  font-size: 1.2rem;
  color: #045E76;
  margin-top: 1.5rem;
  border-bottom: 1px solid #BEE4F8;
  padding-bottom: 0.3rem;
  margin-right: 5rem;
}

  
  /* ---------- PARAGRAFEN ---------- */
  
  p {
    margin-bottom: 1rem;
  }
  
  /* ---------- TABELLEN ---------- */
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: #fefefe;
    table-layout: fixed;
  }
  
  table, th, td {
    border: 1px solid #BEE4F8;
  }
  
  th, td {
    padding: 0.75rem;
    text-align: center;
    vertical-align: middle;
    word-break: break-word;
    hyphens: auto;
  }
  
  th {
    background-color: #E6F5FC;
    color: #045E76;
  }
  
  table th:first-child,
  table td:first-child {
    width: 180px;
    white-space: normal;
  }
  
  /* ---------- Flipoverzicht ---------- */
  
  .grid-flip {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }

  .flipfoto {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .fliptekst {
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    background-color: transparent;
    font-size: 0.95em;
    line-height: 1.5;
    color: #14292F;
    text-align: left;
    display: block;
    height: auto;
    margin-right: 5rem;
  }
  
  .flip-card {
    background-color: transparent;
    width: 200px;
    height: 250px;
    perspective: 1000px;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front,
  .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 8px;
  }
  
  .flip-card-front {
    background-color: #E6F5FC;
    font-weight: bold;
    color: #045E76;
    border: 1px solid #BEE4F8;
  }
  
  .flip-card-back {
    background-color: #ffffff;
    transform: rotateY(180deg);
    font-size: 0.9em;
    color: #045E76;
    border: 1px solid #BEE4F8;
  }

  .flipafbeelding {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-height: 200px;
    object-fit: cover;
  }

  .foto-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    height: 100%;
    box-sizing: border-box;
  }
  
  .fotonaam {
    margin-top: 0.1rem;
    font-weight: bold;
    color: #045E76;
    text-align: center;
    word-wrap: break-word;
  }
  
/* ---------- HOMEPAGE STIJLEN ---------- */

.grid-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  margin: 2rem auto;
  max-width: 1100px;
  padding: 0 1rem;
}

.link-flip {
  width: 100%;
  max-width: 800px;
  height: 220px;
  perspective: 1000px;
}

.link-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.link-flip:hover .link-flip-inner {
  transform: rotateY(180deg);
}

.link-front {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.link-front img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
  border: none;        /* ⬅️ Voeg dit toe */
  box-shadow: none;  
  margin: 0;           
  padding: 0;
}

.link-front::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.486);
  z-index: 2;
  backface-visibility: hidden;
  pointer-events: none; /* ⬅️ DIT TOEVOEGEN */
}

.link-front-text {
  position: absolute; 
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem 2rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  backface-visibility: hidden; /* blijft belangrijk */
  pointer-events: none; /* voorkomt klikken tijdens flip */
}

.link-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  background-color: #E6F5FC;
  color: #045E76;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border-radius: 8px;
  padding: 1rem;
  box-sizing: border-box;
  text-align: center;
  z-index: 1;
}

.link-back a {
  color: #045E76;
  font-weight: bold;
  text-decoration: underline;
  font-size: 1.2rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.link-back a:hover {
  background-color: rgba(4, 94, 118, 0.1);
  text-decoration: none;
}
  
  /* ---------- BANNER ---------- */
  
  .banner-image {
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
    margin: 0 0 2rem 0;
  }
  
  .banner-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 150px;
    object-fit: cover;
  }
  
  /* ---------- AFBEELDINGEN ---------- */
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem 0;
    border: 1px solid #BEE4F8;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }
  
  /* ---------- IFRAME ---------- */
  
  iframe {
    border: none;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
    height: 500px;
  }
  
  /* ---------- CELKLEUREN ---------- */
  
  td.min2 { background-color: #FF0000; color: white; }
  td.min1 { background-color: #FFC000; }
  td.neutraal { background-color: #BFBFBF; }
  td.plus1 { background-color: #92D050; }
  td.plus2 { background-color: #00B050; color: white; }
  
  /* ---------- TOOLTIP ---------- */
  
  .tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-decoration: underline;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 250px;
    background-color: #333;
    color: #fff;
    text-align: left;
    padding: 8px;
    border-radius: 6px;
    position: absolute;
    z-index: 10;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.85em;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }

  /* ---------- LOGO IN NAVIGATIEBALK ---------- */

.nav-logo {
  text-align: center;
  margin-bottom: 0;
}

.nav-logo img {
  background-color: white;
  padding: 0.1rem;        /* optioneel: beetje ruimte rondom */
  border-radius: 6px;     /* optioneel: afgeronde hoeken */
  max-width: 80%;        /* responsief */
  height: auto;
  display: block;
}
  
  /* ---------- RESPONSIVE ---------- */
  
  @media (max-width: 900px) {
    body {
      flex-direction: column;
    }
  
    nav {
      width: 100%;
      height: auto;
      position: relative;
      box-shadow: none;
      border-right: none;
    }
  
    main {
      margin-left: 0;
      padding: 2rem 1rem;
    }
  
    .banner-image {
      padding: 0;
    }
  
    .grid-flip {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .grid-flip {
      grid-template-columns: 1fr;
    }
  
    .link-flip {
      width: 90%;
      height: auto;
    }
  
    .ambitieblok {
      width: 100px;
      height: 100px;
      font-size: 0.8rem;
    }
  }

  @media (max-width: 700px) {
    .flipfoto {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .fliptekst {
      text-align: center;
    }
  }

/* ---------- SVG RAD ---------- */
.svg-wrap {
  max-width: 1100px;   /* kies wat past voor jouw layout */
  margin: 2rem auto;
}

.svg-wrap svg {
  width: 100%;
  height: auto;        /* behoud aspect ratio */
  display: block;
}

/* Interactie op pijlen */
.arrow {
  transition: transform .2s ease, filter .2s ease;
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center;
}
.arrow:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.25));
}

/* ---------- RAD + SIDE PANEL ---------- */
.rad-layout{
  display: block;
}

.svg-wrap{ max-width: 1400px; margin: 0 auto; }
.svg-wrap svg{ width: 100%; height: auto; display: block; }

.side-panel{
  position: sticky;
  top: 24px;
  background: #ffffff;
  border: 1px solid #BEE4F8;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  padding: 16px;
  min-height: 160px;
  font-size: 12px;
  line-height: 1.5;
}

.side-panel h2{ margin: 0 0 .5rem 0; color: #045E76; font-size: 1rem; }

.panel-empty{ color: #50656C; }
.panel-content[hidden]{ display: none !important; }

.panel-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: .5rem;
}
.panel-close{
  border: 1px solid #BEE4F8;
  background: #fff;
  border-radius: 8px;
  width: 32px; height: 32px;
  font-size: 14px; line-height: 28px;
  cursor: pointer;
}

#panel-body{ color: #14292F; line-height: 1.6; }

.panel-actions{ margin-top: .75rem; }
.btn-readmore{
  display: inline-block;
  padding: .45rem .7rem;
  border-radius: 8px;
  border: 1px solid #BEE4F8;
  text-decoration: none;
  color: #045E76;
  font-weight: 600;
}
.btn-readmore:hover{ background: rgba(4,94,118,.08); }

/* Pijlen (je had deze al ongeveer) */
.arrow{
  transition: transform .2s ease, filter .2s ease;
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center;
}
.arrow:hover{
  transform: scale(1.2);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.25));
}

/* Responsive: onder 980px paneel onder het rad */
@media (max-width: 980px){
  .rad-layout{ grid-template-columns: 1fr; }
  .side-panel{ position: static; }
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 980px) {
  nav { width: 180px; }
  main { margin-left: 180px; }

  .rad-layout { display: block; }
  .side-panel { margin-top: 1rem; }
}

/* =========================
   STYLING BOOST (drop-in)
   ========================= */

/* Kleuren als variabelen (zelfde palette) */
:root{
  --c-bg: #ffffff;
  --c-text: #14292F;
  --c-brand: #045E76;
  --c-brand-2: #4CB5E3;
  --c-line: #BEE4F8;
  --c-soft: #E6F5FC;
}

/* Gladdere typografie & subtiele letterspacing */
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; letter-spacing: .01em; }

/* ---------- NAV moderniseren ---------- */
nav{
  background: linear-gradient(180deg, #055e76 0%, #045367 100%);
  border-right: 1px solid rgba(255,255,255,.08);
  box-shadow: 8px 0 24px rgba(0,0,0,.08);
}

/* scrollbar (alleen nav-scroll) */
.nav-scroll{ scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.35) transparent; }
.nav-scroll::-webkit-scrollbar{ width: 8px; }
.nav-scroll::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.35); border-radius: 8px; }
.nav-scroll::-webkit-scrollbar-track{ background: transparent; }

/* Links iets eleganter */
nav a{
  border-radius: 10px;
  transition: background .25s ease, transform .15s ease, color .25s ease;
}
nav a:hover{ text-decoration: none; }

/* Sectiekoppen (Home / button) als 'pill' */
nav li.nav-section > a,
.collapsible > button{
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

/* Actieve/hover states consistent */
nav li.nav-section > a:hover,
.collapsible > button:hover,
nav a.active,
.collapsible > button.active{
  background: var(--c-brand-2);
  color: #fff;
  box-shadow: 0 4px 14px rgba(76,181,227,.35);
}

/* Submenu-links subtieler; hover = zachte highlight */
.submenu a{
  border-radius: 8px;
  padding-left: 1rem;
}
.submenu a:hover{
  background: rgba(255,255,255,.10);
}

/* ---------- MAIN / BANNER ---------- */
.banner-image{
  margin: 0 0 1.25rem 0;
  padding: 0 2rem;
}
.banner-image img{
  max-height: 180px; /* iets royaler */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* ---------- Headings: strakke onderstreep ---------- */
h1, h2, h3{
  position: relative;
  border: 0;                /* lijn weghalen, we tekenen zelf */
  padding-bottom: .6rem;
}
h1::after, h2::after, h3::after{
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100px; height: 3px;
  background: linear-gradient(90deg, var(--c-brand) 0%, var(--c-brand-2) 100%);
  border-radius: 3px;
  opacity: .9;
}
h1{ font-weight: 700; letter-spacing: .01em; }
h2{ font-weight: 700; }

/* ---------- Content cards / side panel ---------- */
.main-content{
  margin-left: 120px;
}

.side-panel{
  border: 1px solid var(--c-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  padding: 18px;
}

.side-panel h3 {
  font-size: 1rem;              /* kleiner dan h2 */
  color: #045E76;               /* behoud kleurconsistentie */
  font-weight: 600;             /* iets minder zwaar */
  border: none;                 /* geen onderstreep van algemene headingstijl */
  margin-top: 0.75rem;
  margin-bottom: 0.4rem;
  padding-bottom: 0;
}

.side-panel h3::after {
  content: none;                /* verwijdert de blauwe gradient-lijn uit algemene headingstijl */
}

.btn-readmore{
  border-radius: 10px;
  border: 1px solid var(--c-line);
  background: linear-gradient(180deg, #fff 0%, #f8fcff 100%);
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
  transition: transform .1s ease, box-shadow .2s ease, background .2s ease;
}
.btn-readmore:hover{
  background: linear-gradient(180deg, #fff 0%, #eef7fb 100%);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transform: translateY(-1px);
}

/* Stapel met gebiedsblokken in het zijpaneel */
.panel-area-stack { display: grid; gap: 1rem; }

/* Los gebiedsblok */
.panel-area {
  background: var(--c-soft, #E6F5FC);
  border-left: 5px solid var(--c-brand-2, #4CB5E3);
  border-radius: 8px;
  padding: 0.8rem 1rem;
}

/* Kopje van een gebied binnen het paneel */
.panel-area h3 {
  font-size: 1rem;
  color: #045E76;
  margin: 0 0 .4rem 0;
  border: none;
  padding: 0;
}
.panel-area h3::after { content: none; }

.panel-area .kolommen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 1.5rem;
}
@media (max-width: 900px){
  .panel-area .kolommen { grid-template-columns: 1fr; }
}

/* Hergebruik jouw plus/min lijstjes */
.kr-list { list-style: none; margin: 0; padding: 0; }
.kr-item { position: relative; padding-left: 1.4rem; margin: .3rem 0; }
.kr-item::before { position: absolute; left: 0; top: 0; line-height: 1.2; font-weight: 700; }
.kr-item.kr-plus::before  { content: "+"; color: #00B04F; }
.kr-item.kr-min::before   { content: "–"; color: #BF2026; }

/* ---------- Tabel: modern kaartje met sticky header ---------- */
table{
  border-collapse: separate !important;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
th{
  background: linear-gradient(180deg, var(--c-soft) 0%, #daf1fb 100%);
  position: sticky;
  top: 0;
  z-index: 1;
}
table tr:nth-child(even) td:not([class^="score-"]) { background: #fcfeff; }
table tr:hover td:not([class^="score-"])          { background: #f6fbfe; }
table, th, td{ border-color: var(--c-line); }

/* ---------- Afbeeldingen losser en schoner ---------- */
img{
  border: 1px solid var(--c-line);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

/* ---------- Home link-cards: iets meer diepte ---------- */
.link-front{ box-shadow: 0 12px 30px rgba(0,0,0,.12); border-radius: 14px; }
.link-back { border-radius: 14px; }

/* ---------- SVG Rad micro-interactie ---------- */
.arrow{
  transition: transform .18s ease, filter .18s ease;
}
.arrow:hover{
  transform: scale(1.12);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.22));
}

/* ---------- Toetsenbord focus states ---------- */
a:focus-visible,
button:focus-visible{
  outline: 2px solid var(--c-brand-2);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ---------- Reduced motion respecteren ---------- */
@media (prefers-reduced-motion: reduce){
  * { transition: none !important; animation: none !important; }
}

/* Scorecellen – altijd leidend t.o.v. zebra/hover */
table td[class^="score-"]{
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  background-clip: padding-box; /* nette afgeronde hoeken */
}

/* Huidige staat & referentiesituatie */
table td.score-slecht        { background: #d73027 !important; color:#fff; }
table td.score-matig         { background: #fc8d59 !important; color:#fff; }
table td.score-redelijk      { background: #fee08b !important; }
table td.score-overwegendgoed{ background: #d9ef8b !important; }
table td.score-goed          { background: #1a9850 !important; color:#fff; }

/* Effectbeoordeling */
table td.score-zeernegatief           { background: #b2182b !important; color:#fff; }
table td.score-negatief               { background: #ef8a62 !important; color:#fff; }
table td.score-neutraal               { background: #f7f7f7 !important; color:#333; }
table td.score-positief               { background: #99d594 !important; }
table td.score-positief-aandacht      { background: #4CB5E3 !important; }
table td.score-zeerpositief           { background: #1a9850 !important; color:#fff; }

/* ---------- AANDACHTSPUNTENKADER ---------- */
.attentieblok {
  background-color: #E6F5FC;      /* lichtblauw vlak, in lijn met tabellen */
  border-left: 6px solid #4CB5E3; /* accentlijn */
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;     /* ruimte rondom */
  border-radius: 8px;
  color: #14292F;                 /* tekstkleur in lijn met body */
  font-size: 0.95em;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.attentieblok h4 {
  color: #045E76;                 /* blauwe kop in lijn met site */
  margin-top: 0;
}

.attentieblok ul {
  margin: 0.5rem 0 0 1.2rem;
  padding: 0;
}

.attentieblok li {
  margin-bottom: 0.3rem;
}

/* ---------- VISIEKAART ---------- */

.kaart-wrap { border:1px solid #BEE4F8; border-radius:8px; overflow:hidden; margin-bottom: 2rem; }
.kaart-svg { display:block; width:100%; height:auto; }
.dot { cursor:pointer; }
.dot:hover circle { filter: drop-shadow(0 2px 3px rgba(0,0,0,.25)); }
.dot:focus-visible circle { outline:3px solid #045E76; outline-offset:2px; }

/* Kansen/Risico's lijst in het zijpaneel */
.panel-content .kolommen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}
@media (max-width: 900px) {
  .panel-content .kolommen { grid-template-columns: 1fr; }
}

.kr-list { list-style: none; margin: 0; padding: 0; }
.kr-item { position: relative; padding-left: 1.4rem; margin: .35rem 0; }
.kr-item::before {
  position: absolute; left: 0; top: 0; line-height: 1.2; font-weight: 700;
}
.kr-item.kr-plus::before  { content: "+"; color: #00B04F; } /* groen */
.kr-item.kr-min::before   { content: "–"; color: #BF2026; } /* rood */


/* ---------- INFORMATIE-TABEL ---------- */
.aspect-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.aspect-header h2 {
  margin: 0;
  color: #045E76;
}

/* Info-knopje */
.info-btn {
  background: #045E76;
  color: white;
  border: none;
  border-radius: 50%;
  width: 1.4rem;
  height: 1.4rem;
  font-size: 0.9rem;
  line-height: 1.4rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}
.info-btn:hover {
  background: #057d9e;
}

/* Uitlegblok (verborgen standaard) */
.uitleg-aspect {
  background: #E6F5FC;
  border-left: 5px solid #4CB5E3;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin: 1rem 0 2rem;
  line-height: 1.55;
}