/* Ronde Tafel 110 — beheeromgeving.
   Rustiger en functioneler dan de site zelf, wel dezelfde kleuren. */

:root {
  --room: #FBF7F0;
  --wit: #FFFFFF;
  --inkt: #2A2620;
  --gedempt: #5C5548;
  --zacht: #8A8072;
  --blauw: #12719F;
  --blauw-diep: #0B5679;
  --blauw-zacht: #EAF4F8;
  --geel: #FBE3A5;
  --lijn: #E4DDD0;
  --fout: #B3261E;
  --fout-zacht: #FCE8E6;
  --schaduw: 0 4px 14px rgba(42, 38, 32, 0.06);
}

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

body {
  margin: 0;
  background: var(--room);
  color: var(--inkt);
  font-family: 'Karla', 'Trebuchet MS', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Baloo 2', 'Trebuchet MS', sans-serif;
  font-weight: 800;
  line-height: 1.12;
  margin: 0;
}
h1 { font-size: 1.55rem; }
h2 { font-size: 1.2rem; }

a { color: var(--blauw); }
a:hover { color: var(--blauw-diep); }

code {
  background: var(--blauw-zacht);
  border-radius: 5px;
  padding: 0.1em 0.4em;
  font-size: 0.92em;
}

:focus-visible { outline: 3px solid var(--blauw); outline-offset: 2px; border-radius: 4px; }

.a-verborgen {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

/* ------------------------------------------------------------ topbalk */

.a-balk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--inkt);
  color: #F3EEE4;
  padding: 0.6rem clamp(1rem, 0.5rem + 2vw, 2rem);
}

.a-merk {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
  font-size: 0.98rem;
}
.a-merk img { width: 30px; height: auto; }
.a-merk strong { font-family: 'Baloo 2', sans-serif; }

.a-balk-rechts {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.92rem;
}
.a-balk-rechts a { color: #E4DCCB; text-decoration: none; }
.a-balk-rechts a:hover { color: var(--wit); text-decoration: underline; }
.a-uitlogformulier { margin: 0; display: inline; }
.a-uitlog {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: #E4DCCB;
  cursor: pointer;
}
.a-uitlog:hover { color: var(--wit); text-decoration: underline; }
.a-wie { color: var(--zacht); }

/* ------------------------------------------------------------- indeling */

.a-omhulsel {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: clamp(1.25rem, 0.5rem + 2vw, 2.25rem);
  width: min(1140px, 100% - 2.5rem);
  margin: clamp(1.25rem, 0.75rem + 1.5vw, 2rem) auto;
  align-items: start;
}

.a-zij {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 12px;
  padding: 0.5rem;
  position: sticky;
  top: 1.25rem;
}

/* Groepskopjes in het zijmenu: Pagina's, Inkomend, Beheer. */
.a-zij-kop {
  margin: 0.7rem 0.7rem 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zacht);
}

.a-zij a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--inkt);
  font-weight: 600;
  font-size: 0.92rem;
  min-height: 36px;
}
.a-zij a:hover { background: var(--room); }
.a-zij a[aria-current="page"] { background: var(--blauw); color: var(--wit); }

.a-badge {
  background: var(--geel);
  color: #6B5A34;
  border-radius: 999px;
  padding: 0.05rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
}
.a-zij a[aria-current="page"] .a-badge { background: var(--wit); color: var(--blauw); }

.a-inhoud { min-width: 0; max-width: 920px; }

.a-paginakop {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-bottom: 0.9rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--lijn);
}
.a-paginakop-acties { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.a-lood { color: var(--gedempt); max-width: 64ch; margin: 0.3rem 0 0; font-size: 0.95rem; }

/* ------------------------------------------------------------ meldingen */

.a-melding {
  border-radius: 10px;
  padding: 0.7rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.a-melding-goed { background: var(--blauw-zacht); color: #0C3E56; }
.a-melding-fout { background: var(--fout-zacht); color: #7A1C15; }

.a-leeg {
  background: var(--wit);
  border: 1px dashed var(--lijn);
  border-radius: 12px;
  padding: 1.5rem;
  color: var(--gedempt);
  text-align: center;
}

/* --------------------------------------------------------------- tegels */

.a-tegels {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.a-tegel {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  text-decoration: none;
  color: var(--inkt);
  box-shadow: var(--schaduw);
}
.a-tegel:hover { border-color: var(--blauw); color: var(--inkt); }
.a-tegel-nadruk { border-color: var(--blauw); background: var(--blauw-zacht); }
.a-tegel-kop { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 1.02rem; }
.a-tegel-tekst { font-size: 0.86rem; color: var(--gedempt); }

.a-blok {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.a-blok h2 { margin-bottom: 0.5rem; }
.a-blok p { margin: 0.25rem 0; }

.a-uitleg { margin: 0.5rem 0 0; padding-left: 1.2rem; color: var(--gedempt); }

.a-testmail { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 0.75rem; margin-top: 0.75rem; }
.a-testmail .a-veld { flex: 1 1 18rem; margin-bottom: 0; }
input[type="email"] { max-width: 46rem; }
.a-uitleg li { margin-bottom: 0.3rem; }

/* ----------------------------------------------------------- formulier */

.a-formulier {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 12px;
  padding: clamp(1.1rem, 1rem + 0.5vw, 1.5rem);
}
.a-blok .a-formulier { border: 0; padding: 0; background: none; }

/* Secties: het formulier als stapel open- en dichtklapbare kaarten, zodat een
   lange pagina in een oogopslag te overzien is. */
.a-formulier-secties {
  background: none;
  border: 0;
  padding: 0;
}

.a-sectie {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 12px;
  margin-bottom: 0.6rem;
  box-shadow: var(--schaduw);
}

.a-sectie summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 46px;
  padding: 0.5rem 1.15rem;
  font-family: 'Baloo 2', 'Trebuchet MS', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  user-select: none;
}
.a-sectie summary::-webkit-details-marker { display: none; }
.a-sectie summary::after {
  content: '';
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin-right: 2px;
  border-right: 2px solid var(--zacht);
  border-bottom: 2px solid var(--zacht);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.15s ease;
}
.a-sectie[open] summary::after { transform: rotate(225deg); }
.a-sectie summary:hover { color: var(--blauw); }
.a-sectie summary:hover::after { border-color: var(--blauw); }
.a-sectie[open] summary { border-bottom: 1px solid var(--lijn); border-radius: 12px 12px 0 0; }

/* Korte velden twee naast elkaar; tekstvakken, foto's en lijsten over de volle breedte. */
.a-sectie-in {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
  padding: 1rem 1.15rem 0.1rem;
}
.a-sectie-in > .a-veld-alinea,
.a-sectie-in > .a-veld-afbeelding,
.a-sectie-in > .a-lijst { grid-column: 1 / -1; }

/* De opslaanknop blijft in beeld terwijl je door de secties scrolt. */
.a-formulier-secties .a-acties {
  position: sticky;
  bottom: 0;
  z-index: 5;
  margin-top: 0.4rem;
  padding: 0.85rem 0.25rem;
  background: var(--room);
  border-top: 1px solid var(--lijn);
}

.a-veld { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1rem; }
.a-veld > label { font-weight: 700; font-size: 0.9rem; }

input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"],
input[type="date"],
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
  color: var(--inkt);
  background: var(--room);
  border: 1px solid var(--lijn);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  width: 100%;
  max-width: 46rem;
}
textarea { resize: vertical; line-height: 1.55; }
input:focus, textarea:focus, select:focus { border-color: var(--blauw); background: var(--wit); }

.a-hulp { font-size: 0.86rem; color: var(--zacht); }
.a-fout { font-size: 0.88rem; color: var(--fout); font-weight: 600; }

.a-schakelaar {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
.a-schakelaar input { width: auto; }

/* -------------------------------------------------------- herhaalblokken */

.a-lijst {
  border: 1px solid var(--lijn);
  border-radius: 10px;
  padding: 0.9rem 1rem 0.4rem;
  margin: 0 0 1rem;
  background: var(--room);
}
.a-lijst legend {
  font-weight: 700;
  font-size: 0.93rem;
  padding: 0 0.5rem;
}

.a-rij {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 10px;
  padding: 0.85rem 1rem 0.1rem;
  margin-bottom: 0.65rem;
}
.a-rij-nieuw { border-style: dashed; background: transparent; }

.a-rij-kop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zacht);
}

.a-verwijder {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fout);
}
.a-verwijder input { width: auto; }

/* ------------------------------------------------------------ afbeelding */

.a-afbeelding {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}
.a-afbeelding img {
  width: 116px;
  height: 88px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--lijn);
  display: block;
}
.a-afbeelding input[type="file"] { width: auto; flex: 1 1 16rem; }

.a-geenfoto {
  display: grid;
  place-items: center;
  width: 116px;
  height: 88px;
  border: 1px dashed var(--lijn);
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--zacht);
  text-align: center;
  padding: 0.4rem;
}

/* --------------------------------------------------------------- knoppen */

.a-knop {
  display: inline-block;
  background: var(--blauw);
  color: var(--wit);
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
}
.a-knop:hover { background: var(--blauw-diep); color: var(--wit); }

.a-knop-terug {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--lijn);
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  color: var(--gedempt);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  min-height: 44px;
}
.a-knop-terug:hover { border-color: var(--zacht); color: var(--inkt); }
.a-knop-klein { padding: 0.4rem 1rem; min-height: 36px; font-size: 0.88rem; }

.a-acties {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.a-link-knop {
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blauw);
  cursor: pointer;
  text-decoration: none;
}
.a-link-knop:hover { text-decoration: underline; }
.a-link-knop-fout { color: var(--fout); }

.a-boven-acties { margin-bottom: 1.25rem; }

/* ---------------------------------------------------------------- tabel */

.a-tabelomhulsel {
  overflow-x: auto;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.a-tabel { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.a-tabel th, .a-tabel td { text-align: left; padding: 0.7rem 1rem; white-space: nowrap; }
.a-tabel thead th {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zacht);
  border-bottom: 1px solid var(--lijn);
}
.a-tabel tbody tr + tr td { border-top: 1px solid var(--lijn); }

.a-tabel-acties { display: flex; gap: 1rem; align-items: center; }
.a-tabel-acties form { display: inline; }

.a-jij {
  background: var(--blauw-zacht);
  color: var(--blauw-diep);
  border-radius: 999px;
  padding: 0.05rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0.35rem;
}

/* ------------------------------------------------------------- berichten */

.a-berichten { display: flex; flex-direction: column; gap: 0.65rem; }

.a-bericht {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 12px;
  padding: 1rem 1.15rem;
}
.a-bericht-nieuw { border-color: var(--blauw); box-shadow: var(--schaduw); }

.a-bericht-kop {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  margin-bottom: 0.6rem;
}
.a-bericht-kop div { display: flex; flex-direction: column; }
.a-bericht-kop a { font-size: 0.9rem; }
.a-bericht-kop time { font-size: 0.86rem; color: var(--zacht); }

.a-bericht-tekst {
  background: var(--room);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--gedempt);
  font-size: 0.95rem;
}

.a-bericht-voet {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 0.7rem;
}
.a-bericht-voet form { display: inline; }

/* -------------------------------------------------------------- galerij */

.a-uploadbalk {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1.25rem;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.75rem;
}
.a-uploadbalk .a-veld { margin-bottom: 0; flex: 1 1 22rem; }

.a-galerij {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  gap: 1rem;
}

.a-galerij-item {
  margin: 0;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 14px;
  overflow: hidden;
}
.a-galerij-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.a-galerij-item figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.7rem 0.85rem 0.85rem;
}

.a-bestandsnaam {
  font-size: 0.8rem;
  color: var(--zacht);
  word-break: break-all;
}
.a-in-gebruik {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blauw);
}

/* --------------------------------------------------------- bestellingen */

.a-cijfers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.a-cijfer {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 12px;
  padding: 0.8rem 1rem;
}
.a-cijfer-nadruk { border-color: var(--blauw); background: var(--blauw-zacht); }

.a-cijfer-getal {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--blauw);
}
.a-cijfer-label { font-size: 0.82rem; color: var(--gedempt); }

.a-filterbalk {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.a-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.a-filteracties { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }

.a-filter {
  border: 1px solid var(--lijn);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gedempt);
  text-decoration: none;
  background: var(--wit);
}
.a-filter:hover { border-color: var(--blauw); color: var(--blauw); }
.a-filter-actief { background: var(--blauw); border-color: var(--blauw); color: var(--wit); }
.a-filter-actief:hover { color: var(--wit); }

.a-bestellingen { display: flex; flex-direction: column; gap: 0.65rem; }

.a-bestelling {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 12px;
  padding: 1rem 1.15rem;
}
.a-bestelling-nieuw { border-color: var(--blauw); box-shadow: var(--schaduw); }

.a-bestelling-kop {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--lijn);
}
.a-bestelling-kop strong { font-size: 1rem; }

.a-bestelling-bedrag {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  color: var(--blauw);
  margin-left: 0.6rem;
}

.a-bestelling-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.86rem;
  color: var(--zacht);
}

.a-merkteken { font-size: 0.82rem; color: var(--zacht); }

.a-status {
  border-radius: 999px;
  padding: 0.1rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
}
.a-status-nieuw { background: var(--geel); color: #6B5A34; }
.a-status-betaald { background: var(--blauw-zacht); color: var(--blauw-diep); }
.a-status-geleverd { background: #E6F1E7; color: #2C5B33; }

.a-bestelling-gegevens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 1rem;
  padding: 0.8rem 0;
  font-size: 0.93rem;
  color: var(--gedempt);
}

.a-etiket {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zacht);
  margin-bottom: 0.25rem;
}

.a-bestelling-voet {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--lijn);
}
.a-bestelling-voet form { display: inline; }

/* ------------------------------------------------ losse kaart (inloggen) */

.a-los {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 2rem 1.25rem;
}

.a-kaart {
  width: min(28rem, 100%);
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 20px;
  padding: clamp(1.75rem, 1rem + 2vw, 2.5rem);
  box-shadow: var(--schaduw);
}
.a-kaart-logo { width: 54px; height: auto; margin-bottom: 1rem; }
.a-kaart h1 { font-size: 1.6rem; margin-bottom: 1.25rem; }
.a-kaart-uitleg { color: var(--gedempt); font-size: 0.95rem; margin-top: 0; }
.a-kaart .a-knop { width: 100%; text-align: center; }
.a-kaart-voet { margin: 1.25rem 0 0; font-size: 0.9rem; text-align: center; }

/* --------------------------------------------------------------- mobiel */

@media (max-width: 860px) {
  .a-omhulsel {
    grid-template-columns: 1fr;
    width: min(1180px, 100% - 2rem);
  }

  .a-zij {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  .a-zij a { flex: 1 1 auto; justify-content: center; }
  .a-zij-kop { display: none; }

  .a-paginakop { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .a-sectie-in { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------- nieuwsbrief */

.a-nieuwsbrief { background: none; border: 0; padding: 0; }

.a-nb-werkblad {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.a-nb-velden { min-width: 0; }

.a-nb-blok {
  position: relative;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 12px;
  padding: 0.9rem 1.1rem 0.25rem;
  margin: 0 0 0.75rem;
}
.a-nb-blok legend {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zacht);
  padding: 0 0.4rem;
}

.a-nb-blokknoppen {
  position: absolute;
  top: 0.5rem;
  right: 0.9rem;
  display: flex;
  gap: 0.6rem;
}
.a-nb-blokknoppen .a-link-knop { font-size: 1rem; line-height: 1; }

.a-nb-toevoegen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.a-nb-toevoegen .a-etiket { margin: 0 0.2rem 0 0; }

/* Het voorbeeld blijft meelopen terwijl je door de blokken scrolt. */
.a-nb-voorbeeld {
  position: sticky;
  top: 1.25rem;
  min-width: 0;
}
.a-nb-voorbeeld iframe {
  width: 100%;
  height: 32rem;
  border: 1px solid var(--lijn);
  border-radius: 12px;
  background: var(--room);
  display: block;
  margin-top: 0.3rem;
}

.a-nb-acties { align-items: flex-end; }
.a-nb-testveld { flex: 1 1 16rem; margin-bottom: 0; }

.a-verzendstand { font-size: 1.05rem; margin: 0.25rem 0 0.5rem; }

@media (max-width: 900px) {
  .a-nb-werkblad { grid-template-columns: 1fr; }
  .a-nb-voorbeeld { position: static; }
  .a-nb-voorbeeld iframe { height: 24rem; }
}

/* ------------------------------------------------------------ betaallinks */

.a-betaalformulier { margin-top: 1rem; }

.a-betaalrij {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(11rem, 100%), 1fr));
  gap: 0 1.25rem;
  max-width: 46rem;
}
.a-betaalrij input { max-width: none; }

.a-veld-keuze { margin-bottom: 0.85rem; }
.a-veld-keuze .a-hulp { margin-left: 3.1rem; }

.a-betaallinks { display: flex; flex-direction: column; gap: 0.65rem; }

.a-betaallink {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 12px;
  padding: 1rem 1.15rem;
}
.a-betaallink-dicht { background: var(--room); }
.a-betaallink-nieuw { border-color: var(--blauw); box-shadow: var(--schaduw); }

.a-betaallink-kop {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--lijn);
}
.a-betaallink-kop strong { font-size: 1rem; }

.a-betaallink-bedrag {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  color: var(--blauw);
  margin-left: 0.6rem;
}

.a-betaallink-merken {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.a-betaallink-tekst { margin: 0.7rem 0 0; color: var(--gedempt); font-size: 0.93rem; }

.a-betaallink-url {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
.a-betaallink-url input {
  flex: 1 1 22rem;
  max-width: none;
  font-size: 0.88rem;
  color: var(--gedempt);
}

.a-betaallink-cijfers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: 0.75rem 1rem;
  margin: 0.9rem 0 0;
  font-size: 0.93rem;
}
.a-betaallink-cijfers dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zacht);
}
.a-betaallink-cijfers dd { margin: 0.15rem 0 0; color: var(--gedempt); }

.a-betaallink-voet {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--lijn);
}
.a-betaallink-voet form { display: inline; }
