    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

    :root {
      /* Zonder dit forceert een systeem in donkere modus native form-controls
         (select-dropdowns, datalist-suggesties) naar hun eigen donkere thema -
         inclusief witte tekst - terwijl de site's eigen CSS een lichte
         achtergrond op diezelfde velden zet (bv. .input), wat onleesbare witte
         tekst op een wit/licht vak oplevert. Deze site heeft geen donker thema,
         dus forceer altijd het lichte native thema voor formuliervelden. */
      color-scheme: light;
      --blue: #1267f1;
      --dark: #101820;
      --sky: #eef8ff;
      --line: #d8efff;
      --muted: #64748b;
      --green: #10b981;
      --red: #ef4444;
      --orange: #f59e0b;
      --shadow: 0 20px 55px rgba(18, 103, 241, .14)
    }

    * {
      box-sizing: border-box
    }

    body {
      margin: 0;
      font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-weight: 400;
      background: var(--sky);
      color: var(--dark)
    }

    button,
    input,
    select,
    textarea {
      font: inherit
    }

    button {
      cursor: pointer
    }

    a {
      text-decoration: none;
      color: inherit
    }

    .muted {
      color: var(--muted)
    }

    /* Typografieschaal uit het merkdocument (06/Typografie): Poppins,
       H1 48-64px Bold, H2 32-40px Bold, H3 20-24px SemiBold, Body 16-18px
       Regular, Microcopy 12-14px SemiBold. .microcopy is een losse utility-
       klasse (geen bestaand element ervoor) voor kleine, nadrukkelijke
       labels/knoptekst in die stijl - zie bv. .setting-label-achtige UI-tekst. */
    .microcopy {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .01em
    }

    .logo {
      width: 300px;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain
    }

    .logoBtn {
      border: 0;
      background: transparent;
      padding: 0;
      display: flex;
      align-items: center
    }

    .btn {
      border: 0;
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px
    }

    .blue {
      background: var(--blue);
      color: #fff
    }

    .dark {
      background: var(--dark);
      color: #fff
    }

    .white {
      background: #fff;
      color: var(--dark);
      box-shadow: inset 0 0 0 1px #e5e7eb
    }

    .green {
      background: var(--green);
      color: #fff
    }

    .red {
      background: #ffe4e6;
      color: #be123c
    }

    .soft {
      background: #eaf7ff;
      color: var(--blue)
    }

    .full {
      width: 100%
    }

    .sitePage {
      min-height: 100vh;
      display: flex;
      flex-direction: column
    }

    .sitePage>main {
      flex: 1
    }

    .top {
      position: sticky;
      top: 0;
      z-index: 60;
      background: rgb(255, 255, 255);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(14px)
    }

    .topin {
      max-width: 1200px;
      margin: auto;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px
    }

    .nav {
      display: flex;
      gap: 16px
    }

    .nav a {
      border: 0;
      background: transparent;
      font-weight: 900;
      color: #475569;
      text-decoration: none;
      cursor: pointer;
      font-size: inherit;
      font-family: inherit;
    }

    .hamb {
      display: none
    }

    .container {
      /* Audit-vondst: .container is een flex-item van .sitePage
         (display:flex; flex-direction:column) - een auto cross-axis margin
         op een flex-item schakelt stretch-uitlijning uit (CSS Flexbox-spec),
         waardoor .container zonder expliciete width krimpt naar zijn eigen
         inhoud i.p.v. altijd tot max-width te vullen. Onzichtbaar zolang de
         inhoud toevallig al breed was (grids op home/aanbod), maar zichtbaar
         smal+gecentreerd op inhoudsarme pagina's (contact, faq, een
         aanbieder zonder aanbod/acties). Expliciete width:100% maakt dit een
         "echte" breedte-100%-flex-item, ongevoelig voor dat auto-margin-
         conflict, terwijl max-width/margin:auto de centrering gewoon
         behouden.
      */
      width: 100%;
      max-width: 1200px;
      margin: auto;
      padding: 32px 20px
    }

    .hero {
      display: grid;
      grid-template-columns: 1fr .8fr;
      gap: 34px;
      align-items: center;
      padding: 36px 0
    }

    h1 {
      font-size: clamp(48px, 5vw, 64px);
      line-height: .95;
      margin: 18px 0;
      font-weight: 700;
      letter-spacing: -.03em
    }

    h2 {
      font-size: clamp(32px, 4vw, 40px);
      margin: 0;
      font-weight: 700;
      letter-spacing: -.02em
    }

    h3 {
      margin: 0;
      font-size: clamp(20px, 3vw, 24px);
      font-weight: 600
    }

    .lead {
      font-size: 18px;
      line-height: 1.65;
      color: #475569
    }

    .badge {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: #fff;
      color: var(--blue);
      padding: 10px 16px;
      font-weight: 900;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .06)
    }

    .panel {
      background: #fff;
      border-radius: 30px;
      padding: 18px;
      box-shadow: var(--shadow)
    }

    /* 404-pagina (index.php, "pagina niet gevonden"-tak) */
    .notFoundPanel {
      max-width: 480px;
      margin: 60px auto;
      padding: 56px 32px;
      text-align: center
    }

    .notFoundIcon {
      width: 72px;
      height: 72px;
      margin: 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--sky);
      color: var(--blue)
    }

    .notFoundCode {
      margin-top: 18px;
      font-size: 56px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -.03em;
      background: linear-gradient(90deg, var(--blue), var(--green));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent
    }

    .notFoundPanel h3 {
      margin-top: 10px
    }

    .notFoundPanel .muted {
      margin-top: 10px
    }

    .notFoundActions {
      margin-top: 28px;
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap
    }

    .input {
      width: 100%;
      border: 1px solid var(--line);
      background: #f4fbff;
      border-radius: 20px;
      padding: 13px 15px;
      font-weight: 800;
      outline: none
    }

    .input:focus {
      border-color: var(--blue);
      background: #fff
    }

    /* Tweede audit, item 6 (toegankelijkheid): generieke zichtbare
       focus-indicator - voorheen bestond die alleen voor .input en
       .dtSortable, dus knoppen/links/kaarten waren met toetsenbord
       onnavigeerbaar zonder zichtbare aanwijzing waar de focus stond. */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible,
    [tabindex]:focus-visible {
      outline: 2px solid var(--blue);
      outline-offset: 2px;
      border-radius: 4px;
    }

    /* Screenreader-only label: tekst blijft programmatisch gekoppeld aan het
       veld (via <label for>) zonder visueel de placeholder-gebaseerde
       layout te veranderen. */
    .srOnly {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* Item 20: skip-link - zelfde offscreen-truc als .srOnly, maar zichtbaar
       zodra hij zelf keyboard-focus krijgt (de enige manier waarop een
       toetsenbordgebruiker 'm ooit bereikt). z-index boven de header (die
       zelf geen expliciete z-index heeft, dus dit is ruim voldoende). */
    .skipLink {
      position: absolute;
      top: -1px;
      left: -1px;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
      z-index: 10000;
      background: var(--blue);
      color: #fff;
      font-weight: 800;
      text-decoration: none;
      border-radius: 0 0 10px 0;
    }
    .skipLink:focus {
      position: fixed;
      top: 0;
      left: 0;
      width: auto;
      height: auto;
      padding: 12px 20px;
      margin: 0;
      overflow: visible;
      clip: auto;
      white-space: normal;
    }

    /* Forceer normale dikte in alle invoervelden */
    .input, select.input, select.input option {
        font-weight: 400 !important;
    }
    
    /* Zorg dat labels dikgedrukt blijven */
    .input-group label {
        font-weight: 800 !important;
    }

    .gridSearch {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px
    }

    .card {
      background: #fff;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: var(--shadow)
    }

    /* item 26: visueel consistente afkap ongeacht exacte tekenlengte -
       includes/aanbod_tile.php knipt de tekst zelf al op woordgrens, dit
       begrenst daarnaast de zichtbare hoogte zodat kaarten met een kortere
       vs. langere beschrijving toch gelijk ogen. */
    .cardDesc {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .pic {
      height: 178px;
      position: relative;
      overflow: hidden
    }

    .pic img {
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .ov {
      position: absolute;
      inset: 0;
      opacity: .32
    }

    .orange {
      background: linear-gradient(135deg, #fb923c, #f43f5e)
    }

    .cyan {
      background: linear-gradient(135deg, #34d399, #06b6d4)
    }

    .lime {
      background: linear-gradient(135deg, #a3e635, #38bdf8)
    }

    .redGrad {
      background: linear-gradient(135deg, #f87171, #fb923c)
    }

    .premium {
      position: absolute;
      right: 12px;
      bottom: 12px;
      background: var(--dark);
      color: #fff;
      border-radius: 999px;
      padding: 7px 10px;
      font-size: 11px;
      font-weight: 1000
    }

    .fav {
      position: absolute;
      left: 12px;
      top: 12px;
      background: rgba(255, 255, 255, .92);
      border: 0;
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 18px;
      transition: color .2s ease, transform .15s ease;
      cursor: pointer;
      /* Item 17: min. 44x44 tikgebied - het hartje-icoon zelf blijft even
         groot (font-size hierboven ongewijzigd), alleen de rondom padding/
         box wordt groot genoeg. display:flex + centering i.p.v. enkel meer
         padding, want padding alleen zou de kaart-afbeelding niet meer
         proportioneel verschuiven. */
      min-width: 44px;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .fav:hover,
    .detailCircleBtn.favHeartBtn:hover {
      transform: scale(1.12);
    }

    /* Item 17: zelfde min-44x44-aanpak als .fav hierboven, voor de sociale-
       media-iconen op aanbod-kaarten (includes/aanbod_tile.php) - het icoon
       zelf blijft 15x15 (SVG width/height ongewijzigd), alleen de klikbare
       <a> eromheen wordt groot genoeg. */
    .tileSocialIcon {
      color: #94a3b8;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 44px;
      min-height: 44px;
    }

    .fav.fav-pulse,
    .detailCircleBtn.fav-pulse {
      animation: favPulse .26s ease;
    }

    @keyframes favPulse {
      0% { transform: scale(1); }
      40% { transform: scale(1.28); }
      100% { transform: scale(1); }
    }

    @media (prefers-reduced-motion: reduce) {
      .fav, .detailCircleBtn.favHeartBtn { transition: none; }
      .fav.fav-pulse, .detailCircleBtn.fav-pulse { animation: none; }
    }

    .emoji {
      position: absolute;
      right: 12px;
      top: 12px;
      background: rgba(255, 255, 255, .92);
      border-radius: 16px;
      padding: 8px;
      font-size: 24px
    }

    .picText {
      position: absolute;
      left: 14px;
      bottom: 14px;
      color: #fff;
      text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
      font-weight: 1000
    }

    /* Eigen span (i.p.v. los tekst-kind van .picText) zodat pages/aanbod.php's
       #aanbodGrid-override de naam-regel apart kan laten afbreken/inkorten van
       de "Featured"-disclosure-regel erna - zie includes/aanbod_tile.php. */
    .picTextProvider {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    /* [VERZOEK] "Featured"-disclosure: plain text only, no pill/background/
       border/icon, deliberately subtler than the bold provider name it sits
       next to. Two variants because the label appears both over a photo
       overlay (.picText, .deal-floating-provider) and on plain white card
       backgrounds (includes/home_sections.php's deal section) - each needs
       its own muted tone to stay readable without becoming prominent. */
    .featuredLabel {
      font-size: 11px;
      font-weight: 600;
      color: var(--muted);
      margin-left: 6px;
      white-space: nowrap;
    }

    .featuredLabel--onPhoto {
      color: rgba(255, 255, 255, .72);
      text-shadow: 0 1px 6px rgba(0, 0, 0, .45);
      font-weight: 500;
    }

    /* [VERZOEK] Uitleg-regel direct onder de resultaattelling op /aanbod en
       /alldeals - kleiner dan de resultaattelling zelf, geen icoon/tooltip/
       modal, altijd zichtbaar (geen klik nodig om 'm te zien). */
    .featuredResultsNote {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--muted);
      margin: 4px 0 0;
    }

    .body {
      padding: 18px
    }

    .title {
      display: flex;
      justify-content: space-between;
      gap: 10px
    }

    .rating {
      background: #fef3c7;
      color: #b45309;
      border-radius: 999px;
      padding: 6px 9px;
      font-size: 12px;
      font-weight: 1000;
      white-space: nowrap;
      height: max-content
    }

    .info {
      display: grid;
      gap: 4px;
      margin: 12px 0;
      color: #64748b;
      font-weight: 800;
      font-size: 14px
    }

    .foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid #eef2f7;
      padding-top: 14px;
      margin-top: 14px
    }

    .filters {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 12px;
      margin: 18px 0
    }

    .detail {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 22px
    }

    .detailMain,
    .detailSide {
      background: #fff;
      border-radius: 36px;
      padding: 16px;
      box-shadow: var(--shadow)
    }

    .heroImg {
      height: 320px;
      width: 100%;
      border-radius: 26px;
      object-fit: cover
    }

    .detailImg {
      height: 230px;
      width: 100%;
      border-radius: 26px;
      object-fit: cover;
      margin-top: 18px
    }

    .facts {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 18px
    }

    .fact {
      background: #f4fbff;
      border-radius: 24px;
      padding: 16px
    }

    .detailSide {
      background: var(--dark);
      color: #fff;
      height: max-content
    }

    .detailSide p {
      color: #cbd5e1
    }

    .stack {
      display: grid;
      gap: 10px;
      margin-top: 18px
    }

    .mapGrid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 20px
    }

    .pin {
      position: absolute;
      border: 0;
      border-radius: 999px;
      background: #fff;
      padding: 11px 14px;
      font-weight: 1000;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .16)
    }

    .pinCenter {
      background: var(--dark);
      color: #fff
    }

    .sideList {
      display: grid;
      gap: 12px
    }

.sideCard {
    background: #fff;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    color: var(--dark); /* Zorgt dat de tekst donker is */
    text-decoration: none;
    display: block;
}

.sideCard strong {
    color: var(--dark); /* Specifiek de naam op donker zetten */
}
    .footer {
      background: #fff;
      border-top: 1px solid var(--line);
      padding: 28px 20px;
      margin-top: auto
    }

    .footerIn {
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
      color: #64748b;
      font-weight: 800
    }

    .footerLinks {
      display: flex;
      flex-wrap: wrap;
      gap: 22px;
      justify-content: flex-end;
      align-items: center;
      flex: 1;
      min-width: 620px
    }

    .footerLinks button,
    .footerLinks a {
      border: 0;
      background: transparent;
      font-weight: 900;
      color: #334155
    }

    .legalPageBlock {
      background: #fff;
      border-radius: 30px;
      padding: 24px;
      box-shadow: var(--shadow)
    }

    .legalSection {
      background: #f4fbff;
      border-radius: 22px;
      padding: 16px;
      margin-top: 14px
    }

    .legalSection h2 {
      margin-bottom: 8px
    }

    .legalSection ul {
      margin: 8px 0 0 18px;
      padding: 0
    }

    .legalSection li {
      margin: 7px 0;
      line-height: 1.55;
      color: #475569;
      font-weight: 700
    }

    .admin {
      display: grid;
      grid-template-columns: 286px 1fr;
      min-height: 100vh
    }

    .aside {
      background: #fff;
      border-right: 1px solid var(--line);
      padding: 24px;
      position: sticky;
      top: 0;
      height: 100vh
    }

    .adminNav {
      display: grid;
      gap: 8px;
      margin-top: 26px
    }

    .adminNav button {
      border: 0;
      border-radius: 18px;
      padding: 13px 14px;
      background: transparent;
      text-align: left;
      font-weight: 1000;
      color: #475569
    }

    .adminNav button.active {
      background: var(--dark);
      color: #fff
    }

    .ahead {
      position: sticky;
      top: 0;
      z-index: 40;
      background: rgba(255, 255, 255, .93);
      border-bottom: 1px solid var(--line);
      padding: 20px 28px;
      backdrop-filter: blur(12px);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px
    }

    .acontent {
      padding: 28px
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px
    }

    .stat {
      background: #fff;
      border-radius: 28px;
      padding: 22px;
      box-shadow: var(--shadow)
    }

    .stat strong {
      display: block;
      font-size: 30px
    }

    .tableWrap {
      overflow: auto;
      background: #fff;
      border-radius: 30px;
      padding: 18px;
      box-shadow: var(--shadow)
    }

    table {
      border-collapse: collapse;
      width: 100%;
      min-width: 930px
    }

    th {
      text-align: left;
      color: #94a3b8;
      text-transform: uppercase;
      font-size: 12px;
      padding: 13px;
      border-bottom: 1px solid #e5e7eb
    }

    td {
      padding: 14px 13px;
      border-bottom: 1px solid #eef2f7;
      font-weight: 800
    }

    .pill {
      display: inline-flex;
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 12px;
      font-weight: 1000
    }

    .pill.green {
      background: #dcfce7;
      color: #047857
    }

    .pill.blue {
      background: #dbeafe;
      color: #1d4ed8
    }

    .pill.yellow {
      background: #fef3c7;
      color: #b45309
    }

    .pill.red {
      background: #ffe4e6;
      color: #be123c
    }

    .pill.slate {
      background: #f1f5f9;
      color: #475569
    }

    .formGrid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px
    }

    .twoCol {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 20px
    }

    .toast {
      margin: 12px 28px 0;
      background: #ecfdf5;
      color: #047857;
      border-radius: 18px;
      padding: 12px 14px;
      font-weight: 1000
    }

    .adminBottom {
      display: none
    }

    .planCard {
      border: 2px solid transparent;
      border-radius: 24px;
      background: #f4fbff;
      padding: 16px;
      text-align: left;
      width: 100%
    }

    .planCard.active {
      background: var(--dark);
      color: #fff;
      border-color: var(--dark)
    }

    .planCard.prem.active {
      background: var(--blue);
      border-color: var(--blue)
    }

    .invoiceCard {
      background: #fff;
      border-radius: 28px;
      padding: 18px;
      box-shadow: 0 12px 30px rgba(18, 103, 241, .10);
      border: 1px solid #eef7ff
    }

    .noteBox {
      background: #fff7ed;
      border: 1px solid #fed7aa;
      border-radius: 22px;
      padding: 14px;
      font-weight: 800;
      color: #9a3412
    }

    .requestPreview {
      overflow: hidden;
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 12px 30px rgba(18, 103, 241, .10);
      border: 1px solid #eef7ff
    }

    .requestHero {
      height: 230px;
      position: relative;
      overflow: hidden
    }

    .requestHero img {
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .requestHeroTag {
      position: absolute;
      left: 14px;
      bottom: 14px;
      border-radius: 999px;
      background: rgba(16, 24, 32, .88);
      color: #fff;
      padding: 8px 12px;
      font-size: 12px;
      font-weight: 1000
    }

    .requestThumbs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      padding: 12px
    }

    .requestThumbs img {
      width: 100%;
      height: 150px;
      border-radius: 20px;
      object-fit: cover
    }

    .previewInfo {
      padding: 0 14px 14px
    }

    .previewInfo p {
      margin: 8px 0;
      color: #64748b;
      font-weight: 800;
      line-height: 1.5
    }

    .legalGrid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px
    }

    .legalText {
      background: #f4fbff;
      border-radius: 18px;
      padding: 12px;
      margin-top: 10px;
      font-size: 13px;
      line-height: 1.55;
      color: #475569;
      font-weight: 700
    }

    @media(max-width:900px) {
      .nav {
        display: none
      }

      .top .hamb {
        display: none
      }

      .ahead .hamb {
        display: inline-flex
      }

      .topin {
        padding: 12px 14px
      }

      .top .logo {
        width: 230px;
        max-width: 58vw
      }

      .container {
        padding: 20px 14px 86px
      }

      .hero,
      .cards,
      .deals,
      .detail,
      .mapGrid,
      .twoCol,
      .legalGrid,
      .dealAdminGrid,
      .customerGrid,
      .metricGrid,
      .backlogGrid,
      .backlogFilters,
      .choiceGrid {
        grid-template-columns: 1fr
      }

      .lead {
        font-size: 15px
      }

      .filters {
        grid-template-columns: 1fr
      }

      .gridSearch {
        grid-template-columns: 1fr
      }

      .facts {
        grid-template-columns: 1fr
      }

      .heroImg {
        height: 260px
      }

      .footer {
        padding-bottom: 86px
      }

      .footerIn {
        display: block
      }

      .footerLinks {
        margin-top: 14px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        min-width: 0
      }

      .bottom {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 60;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        background: #fff;
        border-top: 1px solid var(--line);
        padding: 8px 2px;
        font-size: 10px;
        font-weight: 1000;
        text-align: center;
        color: #64748b
      }

      .bottom button {
        border: 0;
        background: transparent;
        font-weight: 1000;
        color: inherit
      }

      .bottom button.active {
        color: var(--blue)
      }

      .menuPanel {
        width: 84%;
        max-width: 340px;
        height: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: var(--shadow)
      }

      .menuNav {
        display: grid;
        gap: 10px;
        margin-top: 20px
      }

      .menuNav button {
        border: 0;
        border-radius: 18px;
        background: #f4fbff;
        text-align: left;
        padding: 14px;
        font-weight: 1000
      }

      .admin {
        grid-template-columns: 1fr
      }

      .aside {
        display: none
      }

      .ahead {
        padding: 14px
      }

      .ahead .logo {
        width: 220px;
        max-width: 58vw
      }

      .acontent {
        padding: 14px 14px 90px
      }

      .stats {
        grid-template-columns: repeat(2, 1fr)
      }

      .formGrid {
        grid-template-columns: 1fr
      }

      .adminBottom {
        display: grid;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 70;
        grid-template-columns: repeat(6, 1fr);
        background: #fff;
        border-top: 1px solid var(--line);
        padding: 7px 2px;
        font-size: 10px;
        font-weight: 1000;
        text-align: center
      }

      .adminBottom button {
        border: 0;
        background: transparent;
        font-weight: 1000;
        color: #64748b
      }

      .adminBottom button.active {
        color: var(--blue)
      }

      .adminMenuPanel {
        height: 100%;
        width: 86%;
        max-width: 360px;
        background: #fff;
        padding: 20px;
        box-shadow: var(--shadow);
        overflow: auto
      }

      .adminMenuPanel .logo {
        width: 260px;
        max-width: 100%
      }

      .invoiceCard .btn {
        width: 100%;
        margin-top: 6px
      }
    }

    .deals {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 18px
    }

    .dealCard {
      background: #fff;
      border-radius: 30px;
      padding: 18px;
      box-shadow: var(--shadow);
      border: 1px solid #e8f4ff;
      position: relative;
      overflow: hidden
    }

    .dealCard:before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 7px;
      background: linear-gradient(90deg, var(--blue), #10b981, #f59e0b)
    }

    /* Klantmelding: stond hier als losse inline pil onder de foto i.p.v. als
       overlay OP de foto - nu dezelfde position:absolute-overlay als de
       .dealBadge die pages/aanbod.php al gebruikt op activiteitenkaarten met
       een gekoppelde actie, zodat het overal exact hetzelfde formaat is
       (was eerder 2 losse definities die uit elkaar konden lopen). */
    .dealBadge {
      position: absolute;
      bottom: 12px;
      left: 12px;
      display: inline-flex;
      border-radius: 999px;
      background: var(--orange, #f97316);
      color: #fff;
      padding: 5px 12px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      box-shadow: 0 4px 10px rgba(249, 115, 22, 0.35);
    }

    .dealPrice {
      font-size: 28px;
      font-weight: 1000;
      color: var(--blue);
      margin: 10px 0 4px
    }

    .dealDates {
      font-size: 13px;
      color: #64748b;
      font-weight: 800
    }

    .dealAdminGrid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 20px
    }


    .customerGrid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 20px
    }

    .customerCard {
      background: #fff;
      border-radius: 28px;
      padding: 18px;
      box-shadow: 0 12px 30px rgba(18, 103, 241, .10);
      border: 1px solid #eef7ff
    }

    .customerTop {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 14px
    }

    .metricGrid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 14px
    }

    .metric {
      background: #f4fbff;
      border-radius: 20px;
      padding: 14px
    }

    .metric strong {
      display: block;
      font-size: 22px;
      color: var(--blue)
    }

    .choiceGrid {
      display: grid;
      grid-template-columns: .75fr 1.25fr;
      gap: 18px
    }

    .choiceOptions {
      display: grid;
      gap: 10px;
      margin-top: 14px
    }

    .choiceOption {
      border: 1px solid var(--line);
      background: #f4fbff;
      border-radius: 20px;
      padding: 13px 14px;
      text-align: left;
      font-weight: 900
    }

    .choiceOption.active {
      background: var(--blue);
      color: #fff;
      border-color: var(--blue)
    }

    .choiceResult {
      background: #fff;
      border-radius: 24px;
      padding: 16px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .06)
    }


    .choiceHero {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #ffffff 0%, #eef8ff 45%, #dbeafe 100%);
      border-radius: 36px;
      padding: 28px;
      box-shadow: var(--shadow)
    }

    .choiceHero:before {
      content: "⚽";
      position: absolute;
      right: 22px;
      top: 12px;
      font-size: 78px;
      opacity: .10;
      transform: rotate(-14deg)
    }

    .choiceHero:after {
      content: "✨";
      position: absolute;
      right: 150px;
      bottom: 10px;
      font-size: 60px;
      opacity: .16
    }

    .choiceGrid.fun {
      align-items: start
    }

    .choiceBox {
      background: #fff;
      border-radius: 30px;
      padding: 18px;
      box-shadow: 0 12px 30px rgba(18, 103, 241, .10);
      border: 1px solid #e8f4ff
    }

    .choiceStep {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #eff6ff;
      color: var(--blue);
      border-radius: 999px;
      padding: 8px 12px;
      font-weight: 1000;
      margin-bottom: 10px
    }

    .choiceOption {
      transition: .18s transform, .18s box-shadow
    }

    .choiceOption:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 22px rgba(18, 103, 241, .12)
    }

    .choiceResult {
      position: relative;
      overflow: hidden
    }

    .choiceResult:before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 6px;
      background: linear-gradient(90deg, var(--blue), #10b981, #f59e0b)
    }

    .choiceResult strong {
      font-size: 18px
    }

    .choiceEmpty {
      background: #fff7ed;
      border: 1px solid #fed7aa;
      color: #9a3412;
      border-radius: 24px;
      padding: 18px;
      font-weight: 900
    }


    @media(max-width:420px) {
      .topin {
        gap: 8px
      }

      .top .logo {
        width: 215px;
        max-width: 62vw
      }

      .ahead .logo {
        width: 205px;
        max-width: 62vw
      }

      .menuPanel .logo,
      .adminMenuPanel .logo {
        width: 240px;
        max-width: 100%
      }
    }


    .footerLinks .providerCta {
      background: var(--blue);
      color: #fff !important;
      border-radius: 999px;
      padding: 10px 14px;
      box-shadow: 0 8px 22px rgba(18, 103, 241, .18)
    }

    @media(max-width:900px) {
      .bottom {
        font-size: 9px
      }

      .bottom button {
        padding: 4px 1px
      }

      .footerLinks .providerCta {
        display: flex;
        justify-content: center
      }
    }


    @media(max-width:900px) {
      .choiceHero {
        padding: 22px;
        border-radius: 28px
      }

      .choiceHero h1 {
        font-size: 38px;
        margin: 14px 0
      }

      .choiceGrid.fun {
        display: grid;
        gap: 14px
      }

      .choiceBox {
        padding: 14px;
        border-radius: 24px
      }

      .choiceOptions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px
      }

      .choiceOption {
        padding: 11px 10px;
        border-radius: 16px;
        font-size: 13px;
        text-align: center
      }

      .choiceStep {
        width: 100%;
        justify-content: center;
        margin-top: 10px
      }

      .choiceResult {
        padding: 14px;
        border-radius: 20px
      }

      .choiceResult p {
        margin: 8px 0
      }
    }

    @media(max-width:420px) {
      .choiceOptions {
        grid-template-columns: 1fr
      }

      .choiceHero h1 {
        font-size: 34px
      }
    }


    @media(max-width:900px) {
      .choiceHero {
        padding: 22px;
        border-radius: 28px
      }

      .choiceHero h1 {
        font-size: 36px;
        margin: 14px 0;
        line-height: 1
      }

      .choiceGrid,
      .choiceGrid.fun {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important
      }

      .choiceBox {
        padding: 16px;
        border-radius: 24px
      }

      .choiceOptions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important
      }

      .choiceOption {
        width: 100%;
        padding: 14px 14px;
        border-radius: 18px;
        font-size: 15px;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px
      }

      .choiceStep {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
        text-align: center
      }

      .choiceResult {
        padding: 16px;
        border-radius: 22px
      }

      .choiceResult p {
        margin: 8px 0;
        line-height: 1.45
      }
    }

    @media(max-width:420px) {
      .choiceHero h1 {
        font-size: 32px
      }

      .choiceOption {
        font-size: 14px;
        padding: 13px 12px
      }
    }


    @media(max-width:900px) {
      .deals {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        margin-top: 14px !important
      }

      .dealCard {
        border-radius: 26px !important;
        padding: 16px !important;
        box-shadow: 0 12px 30px rgba(18, 103, 241, .12) !important
      }

      .dealCard h3 {
        font-size: 20px !important;
        line-height: 1.2 !important;
        margin: 12px 0 8px !important
      }

      .dealCard .muted {
        font-size: 14px !important;
        line-height: 1.45 !important
      }

      .dealBadge {
        font-size: 11px !important;
        padding: 7px 10px !important
      }

      .dealPrice {
        font-size: 26px !important;
        margin: 12px 0 6px !important
      }

      .dealDates {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        background: #f4fbff !important;
        border-radius: 999px !important;
        padding: 8px 10px !important;
        font-size: 12px !important;
        margin-top: 4px !important
      }

      .dealCard .btn {
        width: 100% !important;
        margin-top: 14px !important
      }

      .panel .deals+* {
        margin-top: 14px
      }
    }

    @media(max-width:420px) {
      .dealCard {
        padding: 15px !important;
        border-radius: 24px !important
      }

      .dealCard h3 {
        font-size: 19px !important
      }

      .dealPrice {
        font-size: 24px !important
      }
    }


    .actionsHeader {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px
    }

    @media(max-width:900px) {
      .actionsHeader {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important
      }

      .actionsHeader .btn {
        width: 100% !important
      }
    }


    .aanbodFilters {
      grid-template-columns: 1.5fr auto 1fr 1fr 1fr
    }

    @media(max-width:900px) {
      .aanbodFilters {
        grid-template-columns: 1fr !important
      }

      .aanbodFilters .btn {
        width: 100%
      }
    }


    .consentHint {
      grid-column: 1/-1;
      background: #fff7ed;
      border: 1px solid #fed7aa;
      color: #9a3412;
      border-radius: 18px;
      padding: 12px 14px;
      font-weight: 900;
      max-height: 200px;
      opacity: 1;
      overflow: hidden;
      box-sizing: border-box;
      transition: max-height .3s ease, opacity .25s ease, padding .3s ease, margin .3s ease, border-width .3s ease;
    }

    .consentHint.collapsed {
      max-height: 0;
      opacity: 0;
      padding-top: 0;
      padding-bottom: 0;
      margin: 0;
      border-width: 0;
    }

    .btn:disabled {
      opacity: .45;
      cursor: not-allowed;
      filter: grayscale(.2)
    }

    .reminderDue {
      display: inline-flex;
      border-radius: 999px;
      background: #fff7ed;
      color: #c2410c;
      padding: 7px 10px;
      font-size: 12px;
      font-weight: 1000
    }

    .legalActions {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 12px
    }

    .legalTopNote {
      background: #fff7ed;
      border: 1px solid #fed7aa;
      border-radius: 22px;
      padding: 14px;
      font-weight: 800;
      color: #9a3412;
      margin-top: 14px
    }

    @media(max-width:900px) {
      .legalGrid {
        grid-template-columns: 1fr
      }
    }
@media (max-width: 768px) {
    header .nav {
        display: none !important; /* Verbergt de knoppen bovenin op mobiel */
    }
}

/* 1. Reset de buitenste wrapper: voorkom dubbele borders en padding! */
.ts-wrapper.input {
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    height: auto !important;
}

/* 2. Stijl de daadwerkelijke zoekbalk exact zoals jouw .input class */
.ts-wrapper .ts-control {
    width: 100% !important;
    border: 1px solid var(--line) !important;
    background: #f4fbff !important;
    border-radius: 20px !important;
    padding: 13px 15px !important;
    font-weight: 400 !important;
    box-shadow: none !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    cursor: text !important;
}

/* 3. Instellingen van de ingetypt tekst */
.ts-wrapper .ts-control input {
    font-family: inherit !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    padding: 0 !important;
    margin: 0 !important;
    color: var(--dark) !important;
}

/* 3.5 DE PLACEHOLDER FIX - Laat hem matchen met je template */
.ts-wrapper .ts-control input::placeholder,
.ts-wrapper .ts-control .placeholder {
    color: #64748b !important; /* Jouw var(--muted) kleur */
    font-weight: 400 !important;
    font-family: Poppins, system-ui, -apple-system, sans-serif !important;
    opacity: 1 !important; /* Forceert de kleur overal goed door */
}

/* 4. Maak het uitklapmenu mooi rond en strak */
.ts-wrapper .ts-dropdown {
    border: 1px solid var(--line) !important;
    border-radius: 20px !important;
    box-shadow: var(--shadow) !important;
    background: #fff !important;
    margin-top: 8px !important; 
    overflow: hidden !important;
    padding: 5px 0 !important;
}

/* 5. Stijl de opties in het menu */
.ts-wrapper .ts-dropdown .option {
    padding: 12px 15px !important;
    font-weight: 400 !important;
    color: var(--dark) !important;
    transition: background 0.1s ease;
}

/* 6. Hover/Select status in het menu */
.ts-wrapper .ts-dropdown .active {
    background: #eef8ff !important; /* var(--sky) */
    color: #1267f1 !important; /* var(--blue) */
    font-weight: 800 !important;
}

/* Verberg de originele dropdown voor de zekerheid */
select#sportSelect {
    display: none !important;
}
/* 6. Hover/Select status in het menu */
.ts-wrapper .ts-dropdown .active {
    background: #eef8ff !important; /* var(--sky) */
    color: #1267f1 !important; /* var(--blue) */
    font-weight: 800 !important;
}

/* Verberg de originele dropdown voor de zekerheid */
select#sportSelect {
    display: none !important;
}
/* ==========================================================================
   Shared admin data-table system (sort/filter/pagination) - one set of
   classes reused by every converted admin list page instead of the ~12
   near-duplicate .xTable blocks each tabbed admin page used to carry its
   own copy of. See includes/admin_datatable.js for the JS side.
   ========================================================================== */
.dtTable { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; }
.dtTable th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); padding: 10px 12px; background: #f8fafc; border-bottom: 1px solid var(--line); white-space: nowrap; }
.dtTable td { padding: 10px 12px; border-bottom: 1px solid #f1f5f9; font-size: 13px; vertical-align: top; }
.dtTable tbody tr:hover td { background: #fafcff; }

.dtTable th.dtSortable { cursor: pointer; user-select: none; }
.dtTable th.dtSortable:hover { color: var(--blue); }
.dtTable th.dtSortable:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; }
.dtTable th.dtSortable::after { content: '\21C5'; display: inline-block; margin-left: 5px; font-size: 10px; color: #cbd5e1; }
.dtTable th.dtSortAsc::after { content: '\25B2'; color: var(--blue); }
.dtTable th.dtSortDesc::after { content: '\25BC'; color: var(--blue); }

.dtFilterBar { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.dtFilterBar label { font-size: 11px; font-weight: 800; color: var(--muted); display: block; margin-bottom: 3px; text-transform: uppercase; letter-spacing: .02em; }

.dtChipRow { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.dtChip { display: inline-flex; align-items: center; gap: 6px; background: var(--sky); color: #0c4a6e; border-radius: 999px; padding: 4px 6px 4px 12px; font-size: 12px; }
.dtChip strong { font-weight: 800; }
.dtChip button { border: none; background: rgba(15, 23, 42, .08); color: #334155; width: 18px; height: 18px; border-radius: 50%; cursor: pointer; font-size: 12px; line-height: 1; display: inline-flex; align-items: center; justify-content: center; }
.dtChip button:hover { background: rgba(15, 23, 42, .18); }

.dtDeadline { display: inline-flex; align-items: center; gap: 4px; }
.dtDeadlineOverdue { color: #991b1b; font-weight: 800; }
.dtDeadlineToday { color: #92400e; font-weight: 800; }
.dtDeadlineSoon { color: #1267f1; }

@media (max-width: 640px) {
    .dtTable { display: block; overflow-x: auto; }
}
