/* ─── koks.live specifiek ──────────────────────────────── */
.logo { color: #fff !important; }
.logo .vlam { font-size: 18px; line-height: 1; }
.logo .live { color: #E87722; }
.hamburger { color: rgba(255,255,255,0.75) !important; }
.nav-btn-plus { background: #E87722 !important; border-color: #E87722 !important; }
/* ═══════════════════════════════════════════════════════
   hrcvc.css — horecavac.nl — alle stijlen
   ═══════════════════════════════════════════════════════ */

/* ── VARIABELEN ──────────────────────────────────────── */
:root {
  --accent:      #E87722;
  --accent-licht: #f0f9e8;
  --accent-rand: #c5e08a;
  --groen: #E87722;
  --groen-dark: #c45f10;
  --tekst:       #1a1a18;
  --tekst-mid:   #555;
  --tekst-licht: #999;
  --rand:        #e8e8e6;
  --bg:          #ffffff;
  --wit:         #ffffff;
  --r:           8px;
  --r-lg:        12px;
}

/* ── RESET & BASE ────────────────────────────────────── */
* {
  box-sizing: border-box;
  margin: 0; padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--tekst);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

/* ── NAVIGATIE ───────────────────────────────────────── */

.nav {
  background: #111111;
  border-bottom: 1px solid var(--rand);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.nav-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.25rem 0 1.15rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  margin-top: 0.47em;
  margin-left: 0.5em;
}

.nav-rechts {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 7px 14px;
  border-radius: 6px;
  background: none;
  border: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
}

.nav-link:hover {
  background: var(--accent-licht);
  color: #111;
}

.nav-btn-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E87722;
  color: #fff;
  border: 1px solid #E87722;
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s, color .15s, transform .15s;
  line-height: 1;
  padding: 0;
  outline: none;
}
.nav-btn-plus:hover {
  background: #fff;
  color: #E87722;
  transform: scale(1.08);
}

.nav-btn-plus:focus {
  outline: none;
}

.nav-btn-plus:focus:not(:focus-visible) {
  background: #E87722;
  color: #fff;
  transform: none;
}

.nav-btn-plus:active {
  transform: scale(0.95);
}

/* ── NAV DROPDOWN ────────────────────────────────────── */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 44px;
  right: 0;
  background: #fff;
  border: 1px solid var(--rand);
  border-radius: var(--r);
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 200;
  overflow: hidden;
}

.nav-dropdown-menu.open {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--tekst-mid);
  border-bottom: 1px solid var(--rand);
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: background .12s;
}
.nav-dropdown-menu a:last-child {
  border-bottom: none;
}

.nav-dropdown-menu a:hover {
  background: var(--accent-licht);
  color: #111;
}

/* ── HAMBURGER & MOBIEL MENU ─────────────────────────── */

.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--rand);
  border-radius: 6px;
  width: 38px;
  height: 38px;
  font-size: 18px;
  cursor: pointer;
  color: var(--tekst-mid);
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.mobiel-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--rand);
  padding: 0.5rem 1.5rem 1rem;
}

.mobiel-menu.open {
  display: flex;
}

.mobiel-menu a {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--tekst-mid);
  border-bottom: 1px solid var(--rand);
  text-decoration: none;
}

.mobiel-menu a:last-child {
  border-bottom: none;
}

.mobiel-menu a:hover {
  color: var(--groen);
}

/* ── MAIN ────────────────────────────────────────────── */
main { 
  padding: 1.5rem 1.25rem;
  max-width: 680px;
  margin: 0 auto;
}

/* ── ALERT BLOK ──────────────────────────────────────── */
.alert-blok {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.alert-rij {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin-bottom: 0.75rem;
}
.alert-email-input {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid var(--rand);
  border-radius: var(--r);
  outline: none;
  background: #fafaf9;
  color: var(--tekst);
  transition: border-color 0.15s;
}
.alert-email-input:focus {
  border-color: var(--accent);
}

.alert-sector-select {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 0 10px;
  border: 1px solid var(--rand);
  border-radius: var(--r);
  outline: none;
  background: #fafaf9;
  color: var(--tekst-mid);
  cursor: pointer;
  height: 38px;
  min-width: 120px;
  transition: border-color 0.15s;
  appearance: auto;
}
.alert-sector-select:focus {
  border-color: var(--accent);
}

.alert-ga-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  background: none;
  color: #F72F32;
  border: none;
  padding: 0 10px;
  border-radius: var(--r);
  cursor: pointer;
  white-space: nowrap;
  height: 38px;
}

.alert-ga-btn:hover {
  opacity: 0.88;
}

/* ── ZOEKBALK ────────────────────────────────────────── */

.zoek-wrap {
  margin-bottom: 1.5rem;
  max-width: 100%;
}
.zoek-inner {
  position: relative;
}
.zoek-icoon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #E87722;
  pointer-events: none;
}
.zoek-wrap input {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  padding: 18px 20px 18px 54px;
  border: none;
  border-radius: 50px;
  outline: none;
  background: #f4f4f4;
  color: var(--tekst);
  box-sizing: border-box;
  transition: background 0.15s;
}
.zoek-wrap input:focus {
  background: #efefef;
}

/* ── TABS ────────────────────────────────────────────── */

.tabs-wrap {
  position: relative; margin-bottom: 0.875rem;
}

.tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tabs-pijl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--wit);
  border: 1px solid var(--rand);
  color: #F72F32;
  font-size: 11px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity 0.15s;
  user-select: none;
}

.tabs-pijl:hover {
  opacity: 0.7;
}

.tabs-pijl.links {
  left: 0;
}

.tabs-pijl.rechts {
  right: 0;
}

.tabs-pijl.verborgen {
  opacity: 0; pointer-events: none;
}

.tab {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--rand);
  color: var(--tekst-mid);
  cursor: pointer;
  background: var(--wit);
  transition: all 0.12s;
  user-select: none;
  flex-shrink: 0;
}
.tab:hover {
  border-color: var(--accent-rand);
  color: var(--accent);
}

.tab.active {
  background: var(--accent-licht);
  color: var(--groen);
  border-color: var(--accent-rand);
  font-weight: 600;
}

/* ── VACATURELIJST ───────────────────────────────────── */

.lijst {
}

.vac-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 0 10px 8px;
  border-bottom: 1px solid var(--rand);
  min-width: 0;
}

.vac-body {
  flex: 1; min-width: 0;
  overflow: hidden;
}

.vac-titel {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #0000ff;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.12s;
  display: block;
}

.vac-titel:hover {
  color: var(--groen);
}

.vac-meta {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
  line-height: 1.3;
}
.vac-extra {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
  line-height: 1.3;
}
.geen-resultaten {
  font-size: 13px;
  color: var(--tekst-licht);
  padding: 2rem 0;
  display: none;
  text-align: center;
}

/* ── PLAATSEN BLOK (onderaan homepage) ───────────────── */

.meer-wrap {
  padding: 1.5rem 0 2rem;
  display: none;
  text-align: left;
}

.meer-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #0000ff;
  background: #fff;
  border: 1px solid var(--rand);
  border-radius: var(--r);
  padding: 10px 24px;
  width: auto;
  cursor: pointer;
  transition: border-color 0.15s;
}

.meer-btn:hover {
  border-color: #0000ff;
}

/* ── PLAATSEN FORMULIER ──────────────────────────────── */

.plaatsen-intro {
  margin-bottom: 1.5rem;
}

.plaatsen-titel {
  font-size: 22px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}
.plaatsen-sub {
  font-size: 13px;
  color: var(--tekst-mid);
  margin-bottom: 12px;
  line-height: 1.5;
}

.plaatsen-usps {
  display: flex;
  flex-wrap: wrap; gap: 8px;
}

.usp {
  font-size: 12px;
  color: var(--groen);
  background: var(--accent-licht);
  border: 1px solid var(--accent-rand);
  padding: 3px 10px;
  border-radius: 20px;
}

.form-kaart {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--r);
  padding: 1.5rem;
}

.form-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.veld-enkel {
  margin-bottom: 1rem;
}

.veld label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tekst-licht);
  display: block;
  margin-bottom: 5px;
}

.veld input, .veld select {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 9px 12px;
  background: #f5f6f3;
  border: 1px solid var(--rand);
  border-radius: var(--r);
  color: var(--tekst);
  outline: none;
  transition: border-color 0.15s;
}

.veld input:focus, .veld select:focus {
  border-color: var(--accent);
}

.veld-hint {
  font-size: 11px;
  color: var(--tekst-licht);
  margin-top: 4px;
}
.url-status {
  font-size: 11px;
  margin-top: 4px;
  min-height: 14px;
}

.url-status.ok    {
  color: var(--groen);
}

.url-status.fout  {
  color: #E8264A;
}

.url-status.bezig {
  color: var(--tekst-licht);
}

.form-prijs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rand);
  flex-wrap: wrap;
}

.prijs-info {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.prijs {
  font-family: 'DM Mono', monospace;
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
}

.prijs-detail {
  font-size: 12px;
  color: var(--tekst-licht);
  line-height: 1.5;
}

.btn-betalen {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background: none;
  color: var(--groen);
  border: 1px solid var(--groen);
  padding: 12px 28px;
  border-radius: var(--r);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.btn-betalen:hover {
  background: var(--groen);
  color: #fff;
}

.btn-betalen:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-melding {
  margin-top: 1rem;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--r);
}

.form-melding.fout {
  background: rgba(232,38,74,0.1);
  color: #E8264A;
  border: 1px solid rgba(232,38,74,0.3);
}

.form-melding.ok   {
  background: var(--accent-licht);
  color: var(--groen);
  border: 1px solid var(--accent-rand);
}

/* ── FOOTER ──────────────────────────────────────────── */

footer {
  border-top: 1px solid var(--rand);
  padding: 1.5rem 1.25rem;
  text-align: center;
  margin-top: 2rem;
}
.footer-inner {
  max-width: 680px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--tekst-licht);
  line-height: 2;
}
.footer-inner a {
  color: var(--accent); 
  text-decoration: none;
}

.footer-inner a:hover {
  text-decoration: underline;
}

/* ── MIJNACCOUNT ─────────────────────────────────────── */

.account-wrap {
  max-width: 640px;
  margin: 3rem auto;
  padding: 0 1.5rem 5rem;
}

.account-titel {
  font-family: 'Work Sans', sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #111;
  margin-bottom: 0.5rem;
}

.account-sub {
  font-size: 15px;
  color: var(--tekst-mid);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.keuze-kaart {
  border: 1.5px solid var(--rand);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
}

.keuze-kaart:hover {
  border-color: var(--accent-rand);
  background: var(--accent-licht);
}

.keuze-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.keuze-icoon {
  font-size: 22px;
}

.keuze-titel {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  font-family: 'Work Sans', sans-serif;
}

.keuze-tekst {
  font-size: 14px;
  color: var(--tekst-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.keuze-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Work Sans', sans-serif;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.keuze-btn-groen {
  background: var(--groen);
  color: #fff;
}

.keuze-btn-grijs {
  background: #f0f0f0;
  color: #555;
}

.keuze-btn-rood  {
  background: #fff0f0;
  color: #cc0000;
  border: 1px solid #ffcccc;
}

.scheiding {
  border: none;
  border-top: 1px solid var(--rand);
  margin: 1.5rem 0;
}

/* ── JURIDISCHE PAGINA'S ─────────────────────────────── */

.juridisch-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 5rem;
}

.juridisch-titel {
  font-size: 22px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}

.juridisch-datum {
  font-size: 13px;
  color: var(--tekst-licht);
  margin-bottom: 1.5rem;
}

.juridisch-body h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 2.5rem 0 0.75rem;
}

.juridisch-body h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin: 1.5rem 0 0.5rem;
}

.juridisch-body p {
  font-size: 15px;
  color: var(--tekst-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.juridisch-body ul {
  margin: 0 0 1rem 1.25rem;
}

.juridisch-body ul li {
  font-size: 15px;
  color: var(--tekst-mid);
  line-height: 1.8;
  margin-bottom: 0.25rem;
}

.juridisch-body a {
  color: var(--groen);
  text-decoration: none;
}

.juridisch-body a:hover {
  text-decoration: underline;
}

.juridisch-kaart {
  background: #f8f8f8;
  border: 1.5px solid var(--rand);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.juridisch-kaart p {
  margin: 0;
  font-size: 14px;
  color: var(--tekst-mid);
  line-height: 1.7;
}

.terug-link {
  display: inline-flex;
  align-items: center;
  gap: 6px; font-size: 13px;
  color: var(--tekst-licht);
  text-decoration: none;
  margin-top: 3rem;
}

.terug-link:hover {
  color: var(--groen);
}

/* ── MOBIEL ──────────────────────────────────────────── */

@media (max-width: 820px) {
  .hamburger { display: flex; }
  .nav-dropdown { display: none; }
  .nav-link.verberg-mobiel { display: none; }
  .nav-btn-plus { width: 28px; height: 28px; font-size: 18px; }
  .hamburger { width: 32px; height: 32px; font-size: 15px; }
  .nav-rechts { gap: 13px; }
}

@media (max-width: 600px) {
  main { padding: 1.25rem 1.25rem; }
  input, textarea, select { font-size: 16px !important; }
  input::placeholder { font-size: 13px; }

  /* Alert */
  .alert-blok { padding: 0.75rem 1rem; margin-bottom: 0.75rem; }
  .alert-rij { flex-wrap: nowrap; gap: 6px; }
  .alert-email-input { flex: 1 1 auto; min-width: 0; }
  .alert-sector-select { flex: 0 0 120px; height: 36px; min-width: 0; }
  .alert-ga-btn { flex: 0 0 auto; height: 36px; padding: 0 8px; }

  /* Zoek */
  .zoek-wrap { margin-bottom: 0.5rem; }

  /* Tabs */
  .tabs-pijl { display: none; }
  .tabs-wrap::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 32px;
    background: linear-gradient(to right, transparent, var(--bg));
    pointer-events: none;
  }
  .tabs { gap: 4px; margin-bottom: 0.5rem; }
  .tab { font-size: 11px; padding: 3px 9px; }

  /* Vacatures */
  .vac-titel { font-size: 20px; }

  /* Plaatsen formulier */
  .form-rij { grid-template-columns: 1fr; }
  .form-kaart { padding: 1rem; }
  .plaatsen-titel { font-size: 18px; }
  .form-prijs { flex-direction: column; align-items: stretch; }
  .btn-betalen { width: 100%; text-align: center; }

  /* Mijnaccount */
  .account-wrap { padding: 0 1rem 4rem; }
  .account-titel { font-size: 26px; }

  /* Juridisch */
  .juridisch-wrap { padding: 2rem 1rem 4rem; }
  .juridisch-titel { font-size: 24px; }

  /* Footer */

  .footer-inner { font-size: 11px; }
}

/* ── OVER PAGINA ─────────────────────────────────────── */

.over-hero {
  padding: 1.5rem 0 0;
}

.over-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.25rem 1.5rem;
  border-bottom: 1px solid var(--rand);
}

.over-hero h1 {
  font-size: 22px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
  line-height: 1.3;
}

.over-hero h1 em {
  color: var(--groen);
  font-style: normal;
}

.over-hero-sub {
  font-size: 14px;
  color: var(--tekst-licht);
  margin: 0;
  line-height: 1.7;
}
.over-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 5rem;
}

.over-sectie {
  margin-bottom: 3rem;
}

.over-sectie h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #111;
  margin-bottom: 0.75rem;
}
.over-sectie p {
  font-size: 15px;
  color: var(--tekst-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.usps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin: 1.5rem 0;
}

.usp-kaart {
  background: #fff;
  border: 1.5px solid var(--rand);
  border-radius: var(--r-lg);
  padding: 1.25rem;
}

.usp-icoon {
  font-size: 24px;
  margin-bottom: 8px;
}

.usp-titel {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.usp-tekst {
  font-size: 13px;
  color: var(--tekst-mid);
  line-height: 1.6;
}

.prijzen-tabel {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 14px;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--rand);
}

.prijzen-tabel th {
  background: #f8f8f8;
  padding: 10px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--tekst-licht);
  border-bottom: 2px solid var(--rand);
}

.prijzen-tabel td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--rand);
  color: var(--tekst-mid);
}

.prijzen-tabel tr:last-child td {
  border-bottom: none;
}

.prijzen-tabel .prijs {
  font-weight: 700;
  color: #111; }

.over-maker {
  background: #f8f8f8;
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.over-maker-naam {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.over-maker-titel {
  font-size: 13px;
  color: var(--tekst-licht);
  margin-bottom: 8px;
}

.over-maker-tekst {
  font-size: 14px;
  color: var(--tekst-mid);
  line-height: 1.7;
}

.cta-blok {
  background: #f5f5f3;
  border: 1px solid var(--rand);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 2rem;
}

.cta-blok h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: #111;
}

.cta-blok h2 em {
  color: var(--groen);
  font-style: normal;
}

.cta-blok p {
  font-size: 15px;
  color: var(--tekst-mid);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.cta-knop {
  background: #fff;
  color: var(--groen);
  border: 1.5px solid var(--rand);
  padding: 12px 28px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: border-color .15s;
}

.cta-knop:hover {
  border-color: #aaa;
}

.contact-sectie {
  background: #fff;
  border: 1.5px solid var(--rand);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin-bottom: 3rem;
}

.contact-sectie h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #111;
  margin-bottom: 0.5rem;
}

.contact-sectie .sub {
  font-size: 15px;
  color: var(--tekst-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.contact-item {
  background: #f8f8f8;
  border: 1px solid var(--rand);
  border-radius: var(--r);
  padding: 1rem;
}

.contact-item-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--tekst-licht);
  margin-bottom: 4px;
}
.contact-item-waarde {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.contact-item-waarde a {
  color: var(--groen);
  text-decoration: none;
}

.contact-item-waarde a:hover {
  text-decoration: underline;
}

.contact-mail-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--groen);
  border: 1.5px solid var(--rand);
  padding: 12px 24px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: border-color .15s;
}
.contact-mail-btn:hover { border-color: #aaa; }

/* ── BEDRIJVEN PAGINA ────────────────────────────────── */

.bedrijven-hero {
  padding: 2rem 1.25rem 1.5rem;
  border-bottom: 1px solid var(--rand);
}

.bedrijven-hero h1 {
  font-family: 'Work Sans', sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #111;
  margin-bottom: 6px;
}

.bedrijven-hero p {
  font-size: 14px;
  color: var(--tekst-mid);
}

.bedrijven-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
}

.bedrijf-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--rand);
}

.bedrijf-naam {
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.bedrijf-stad {
  font-size: 13px;
  color: var(--tekst-licht);
  margin-top: 2px;
}

.bedrijf-count {
  font-size: 12px;
  color: var(--groen);
  font-weight: 600;
  white-space: nowrap;
}

.bedrijven-leeg {
  text-align: center;
  padding: 3rem 0;
  color: var(--tekst-licht);
  font-size: 14px;
}

/* ── RESPONSIVE ──────────────────────────────────────── */

@media (max-width: 600px) {
  .over-body { padding: 2rem 1rem 4rem; }
  .over-hero { padding: 2rem 0; }
  .over-hero-inner { padding: 0 1rem; }
  .over-hero h1 { font-size: 22px; }
  .over-maker { flex-direction: column; }
  .contact-sectie { padding: 1.25rem; }
}
/* ── BEDRIJVEN KAARTEN ───────────────────────────────── */
.bedrijven-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem auto 3rem;
  max-width: 680px;
  padding: 0 1.25rem;
}
.bedrijf-kaart {
  background: #fff;
  border: 1px solid var(--rand);
  border-radius: var(--r);
  padding: 1rem;
}
.bedrijf-kaart-naam {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  margin-bottom: 2px;
}
.bedrijf-kaart-locatie {
  font-size: 11px;
  color: var(--tekst-licht);
  display: block;
  margin-bottom: 1px;
}

.overlay-locatie {
  font-size: 12px;
  color: var(--tekst-licht);
  display: block;
  margin-bottom: 2px;
}

.bedrijf-kaart-vac {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bedrijf-kaart-vac a {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #0000ff;
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.12s;
}

.bedrijf-kaart-vac a:hover {
  color: var(--groen);
}

@media (max-width: 600px) {
  .bedrijven-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

/* ── BEDRIJVEN INTRO ─────────────────────────────────── */
.bedrijven-intro {
  max-width: 680px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 0;
}
.bedrijven-intro h1 {
  font-size: 22px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}
.bedrijven-intro p {
  font-size: 14px;
  color: var(--tekst-licht);
  margin-bottom: 1.5rem;
}

/* ── OVERLAY ─────────────────────────────────────────── */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 500;
  align-items: center;
  justify-content: center;
}
.overlay.open { display: flex; }
.overlay-kaart {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem;
  max-width: 380px;
  width: 90%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  position: relative;
  animation: opkomen 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes opkomen {
  from { transform: scale(0.1); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.overlay-sluit {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 18px;
  color: var(--tekst-licht);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.overlay-sluit:hover { color: #111; }
.overlay-naam {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}
.overlay-stad {
  font-size: 13px;
  color: var(--tekst-licht);
  margin-bottom: 1.25rem;
}
.overlay-vac {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.overlay-vac a {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0000ff;
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid var(--rand);
  border-radius: var(--r);
  transition: background 0.12s, color 0.12s;
  display: block;
}
.overlay-vac a:hover {
  background: var(--accent-licht);
  color: var(--groen);
  border-color: var(--accent-rand);
}

/* ── BEDRIJF KAART VAC TITEL ─────────────────────────── */

.bedrijf-kaart-vac-titel {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #0000ff;
  line-height: 1.6;
}

/* ── CONTACTFORMULIER ────────────────────────────────── */

.contact-form-wrap {
  background: #fff;
  border: 1.5px solid var(--groen-light);
  border-radius: 12px;
  padding: 1.75rem;
}
.contact-form-titel {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 1.25rem;
  font-family: 'DM Sans', sans-serif;
}

.contact-form-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-form-veld {
  margin-bottom: 12px;
}

.contact-form-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--tekst-licht);
  display: block;
  margin-bottom: 5px;
}
.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  width: 100%;
  border: 1.5px solid var(--rand);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  box-sizing: border-box;
  background: #fff;
}
.contact-form-textarea {
  resize: vertical;
  line-height: 1.6;
}
.contact-form-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-form-sub {
  font-size: 12px;
  color: var(--tekst-licht);
}
.contact-form-sub a {
  color: var(--groen);
  font-weight: 600;
  text-decoration: none;
}
.contact-melding {
  display: none;
  margin-top: 1rem;
  background: var(--groen-lichtst);
  border: 1.5px solid var(--groen-light);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--groen-dark);
  font-weight: 600;
}
.contact-fout {
  display: none;
  margin-top: 1rem;
  background: #fff0f0;
  border: 1.5px solid #ffcccc;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #cc0000;
}
@media (max-width: 600px) {
  .contact-form-rij { grid-template-columns: 1fr; }
  .meer-btn { font-size: 14px; padding: 8px 18px; }
}

/* ── OVER.PHP EXTRA ──────────────────────────────────── */

.usp-link {
  color: var(--groen);
  font-weight: 600;
  text-decoration: none;
}

.usp-link:hover {
  text-decoration: underline;
}

.usp-kaart-breed {
  grid-column: 1 / -1;
}

.over-quote {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  color: #111;
}

.contact-grid {
  margin-bottom: 2rem;
}

/* ── COOKIE TABEL ────────────────────────────────────── */

.cookie-tabel {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 1rem 0;
}

.cookie-tabel th {
  background: #f8f8f8;
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--tekst-licht);
  border-bottom: 2px solid var(--rand);
}

.cookie-tabel td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--rand);
  color: var(--tekst-mid);
}

.cookie-tabel tr:last-child td {
  border-bottom: none;
}

/* ── DASHBOARD ───────────────────────────────────────── */

.login-wrap {
  max-width: 380px;
  margin: 0 auto;
  text-align: center;
}

.login-titel {
  font-size: 22px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}

.login-sub {
  font-size: 14px;
  color: var(--tekst-licht);
  margin-bottom: 2rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-form input {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 10px 14px;
  border: 1px solid var(--rand);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s;
  text-align: center;
}

.login-form input:focus {
  border-color: var(--groen);
}

.login-form button {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  color: var(--groen);
  border: 1px solid var(--groen);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.login-form button:hover {
  background: var(--groen);
  color: #fff;
}

.fout {
  font-size: 13px;
  color: var(--groen);
  margin-top: 8px;
}

.verstuurd-wrap {
  text-align: center;
}

.verstuurd-icoon {
  font-size: 36px;
  margin-bottom: 1rem;
}

.verstuurd-titel {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.verstuurd-sub {
  font-size: 14px;
  color: var(--tekst-licht);
}

.dashboard-kop {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rand);
}

.dashboard-kop h1 {
  font-size: 22px;
  font-weight: 600;
  color: #444;
}

.dashboard-kop p {
  font-size: 13px;
  color: var(--tekst-licht);
  margin-top: 4px;
}

.dashboard-bedrijf {
  font-size: 15px;
  font-weight: 600;
  color: #111 !important;
  margin-top: 8px !important;
}

.vac-kaart {
  border: 1px solid var(--rand);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  background: #fff;
}
.vac-kaart-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.vac-kaart-titel {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 3px;
}

.vac-kaart-status {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 12px;
}

.status-actief {
  background: #f0f9e0;
  color: #5a8a00;
}

.status-verlopen {
  background: #fee2e2;
  color: #c0392b;
}

.status-inactief {
  background: #f5f5f3;
  color: #999;
}

.vac-link-wrap {
  margin-bottom: 10px;
}

.vac-link-label {
  font-size: 11px;
  color: var(--tekst-licht);
  margin-bottom: 5px;
}

.vac-link-input {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  padding: 7px 10px;
  border: 1px solid var(--rand);
  border-radius: 6px;
  width: 100%;
  outline: none;
  color: #555;
  transition: border-color 0.15s;
}

.vac-link-input:focus {
  border-color: var(--groen);
}

.vac-kaart-acties {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}

.vac-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid var(--rand);
  color: #555;
  background: #fff;
  transition: all 0.12s;
  white-space: nowrap;
}

.vac-btn:hover {
  border-color: #ccc;
  color: #111;
}

.vac-btn.groen {
  border-color: var(--groen);
  color: var(--groen);
}

.vac-btn.groen:hover {
  background: var(--groen);
  color: #fff;
}

.vac-btn.rood {
  border-color: #e8264a;
  color: #e8264a;
}

.vac-btn.rood:hover {
  background: #e8264a;
  color: #fff;
}

.verloopt-datum {
  font-size: 11px;
  color: #bbb;
  margin-top: 3px;
}

/* ── DASHBOARD TABEL ─────────────────────────────────── */

.lijst-kaart {
  background: #fff;
  border: 1px solid var(--rand);
  border-radius: var(--r);
  overflow: hidden;
}

.dash-tabel {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
tabel thead tr {
  background: #f8f8f8;
  border-bottom: 2px solid var(--rand);
}

.dash-tabel th {
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--tekst-licht);
}

.dash-tabel td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--rand);
  vertical-align: middle;
}

.dash-tabel tr:last-child td {
  border-bottom: none;
}

.dash-tabel tr:hover td {
  background: #fafafa;
}

.dash-meta { font-size: 12px;
  color: var(--tekst-licht);
}

.dash-acties {
  white-space: nowrap;
}

.link-status {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.link-ok {
  background: var(--groen);
}

.link-onbekend {
  background: #ddd;
}
/* ── NAAR BOVEN LINK ─────────────────────────────────── */
.naar-boven-link {
  font-size: 13px;
  color: var(--tekst-licht);
  text-decoration: none;
  margin-left: 1rem;
}
.naar-boven-link:hover { color: var(--groen); }

/* ─── ADMIN STYLES ─────────────────────────────────── */
/* ── LOGIN ───────────────────────────────────────── */
.login-wrap { display:flex; align-items:center; justify-content:center; min-height:100vh; }
.login { background:#fff; border:1px solid #e8e8e6; border-radius:12px; padding:2rem; width:320px; }
.login .logo { font-size:18px; font-weight:600; margin-bottom:1.5rem; color:#1a1a18; }
.login .logo span { color:#E87722; }
.login input { width:100%; padding:9px 12px; background:#f5f5f3; border:1px solid #e8e8e6; border-radius:8px; color:#1a1a18; font-family:DM Sans,sans-serif; font-size:14px; outline:none; margin-bottom:10px; }
.login button { width:100%; padding:9px; background:#E87722; color:#fff; border:none; border-radius:8px; font-weight:700; font-size:14px; cursor:pointer; }

/* ── ADMIN ───────────────────────────────────────── */
:root {
  --accent: #E87722;
  --tekst: #1a1a18;
  --tekst-mid: #555;
  --tekst-licht: #999;
  --rand: #e8e8e6;
  --bg: #f5f5f3;
  --wit: #ffffff;
  --r: 8px;
  --groen: #c45f10;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--tekst); font-size: 14px; }
header { background: #111111; border-bottom: 1px solid #222; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'DM Mono', monospace; font-size: 18px; font-weight: 500; color: #fff; }
.logo span { color: var(--accent); }
.uitloggen { font-size: 12px; color: rgba(255,255,255,0.5); text-decoration: none; }
.uitloggen:hover { color: var(--accent); }
main { max-width: 800px; margin: 2rem auto; padding: 0 1.5rem; }

/* FORMULIER */
.form-kaart { background: var(--wit); border: 1px solid var(--rand); border-radius: var(--r); padding: 1.5rem; margin-bottom: 2rem; }
.form-titel { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--tekst-licht); margin-bottom: 1.25rem; }
.form-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-rij.enkel { grid-template-columns: 1fr; }
.veld label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--tekst-licht); display: block; margin-bottom: 5px; }
.veld input, .veld select {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 9px 12px;
  background: #f5f5f3;
  border: 1px solid var(--rand);
  border-radius: var(--r);
  color: var(--tekst);
  outline: none;
  transition: border-color 0.15s;
}
.veld input:focus, .veld select:focus { border-color: var(--accent); }
.veld input.geldig { border-color: #c45f10; }
.veld input.ongeldig { border-color: var(--accent); }

/* URL checker */
.url-status { font-size: 11px; margin-top: 4px; height: 14px; }
.url-status.ok { color: #c45f10; }
.url-status.fout { color: var(--accent); }
.url-status.bezig { color: var(--tekst-licht); }

.form-acties { display: flex; gap: 10px; align-items: center; margin-top: 1.25rem; }
.btn-plaatsen { background: var(--accent); color: #fff; border: none; padding: 6px 12px; border-radius: var(--r); font-size: 14px; font-weight: 700; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: opacity 0.15s; }
.btn-plaatsen:hover { opacity: 0.88; }
.btn-reset { background: transparent; color: var(--tekst-licht); border: 1px solid var(--rand); padding: 10px 16px; border-radius: var(--r); font-size: 13px; font-family: 'DM Sans', sans-serif; cursor: pointer; }
.melding { font-size: 13px; color: #c45f10; display: none; }

/* LIJST */
.lijst-kaart { background: var(--wit); border: 1px solid var(--rand); border-radius: var(--r); overflow: hidden; }
.lijst-header { padding: 1rem 1.25rem; border-bottom: 1px solid var(--rand); display: flex; align-items: center; justify-content: space-between; }
.lijst-header span { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--tekst-licht); }
.zoek-admin { font-family: 'DM Sans', sans-serif; font-size: 13px; padding: 6px 10px; background: #f5f5f3; border: 1px solid var(--rand); border-radius: var(--r); color: var(--tekst); outline: none; width: 220px; }
.zoek-admin:focus { border-color: var(--accent); }

table { width: 100%; border-collapse: collapse; font-size: 13px; }
th { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--tekst-licht); padding: 8px 12px; text-align: left; border-bottom: 1px solid var(--rand); }
td { padding: 10px 12px; border-bottom: 1px solid var(--rand); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #fafaf9; }

.badge { display: inline-block; font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 4px; }
.badge-actief { background: #f0f9e0; color: #c45f10; }
.badge-inactief { background: #f5f5f3; color: var(--tekst-licht); }

.sector-tag { font-size: 11px; color: var(--tekst-licht); background: #f5f5f3; padding: 2px 7px; border-radius: 4px; }

.actie-btn { font-size: 11px; font-family: 'DM Sans', sans-serif; padding: 3px 10px; border-radius: 4px; cursor: pointer; border: 1px solid var(--rand); background: transparent; color: var(--tekst-mid); margin-left: 4px; }
.actie-btn:hover { border-color: var(--accent); color: var(--accent); }
.actie-btn.rood:hover { border-color: var(--accent); color: var(--accent); }
.actie-btn.blauw:hover { border-color: #5B9BF5; color: #5B9BF5; }

.link-status { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
.link-ok { background: #c45f10; }
.link-fout { background: var(--accent); }
.link-onbekend { background: var(--tekst-licht); }

@media (max-width: 600px) {
  .form-rij { grid-template-columns: 1fr; }
  main { padding: 0 1rem; margin: 1rem auto; }
}
/* ─── DASHBOARD STYLES ───────────────────────────────── */
.login-wrap { max-width: 420px; margin: 4rem auto; padding: 0 1.25rem; }
.login-titel { font-size: 24px; font-weight: 700; color: #111; margin-bottom: 8px; }
.login-sub { font-size: 14px; color: var(--tekst-licht); margin-bottom: 1.5rem; }
.login-form input { width: 100%; border: 1.5px solid var(--rand); border-radius: 8px; padding: 11px 14px; font-size: 14px; font-family: var(--font); outline: none; margin-bottom: 10px; }
.login-form input:focus { border-color: #E87722; }
.login-form button { width: 100%; background: #111; color: #fff; border: none; padding: 12px; border-radius: 8px; font-size: 14px; font-weight: 600; font-family: var(--font); cursor: pointer; }
.login-form button:hover { background: #E87722; }
.fout { background: #fff0f0; border: 1px solid #ffcccc; border-radius: 8px; padding: 10px 14px; font-size: 13px; color: #cc0000; margin-top: 10px; }

.verstuurd-wrap { max-width: 420px; margin: 4rem auto; padding: 0 1.25rem; text-align: center; }
.verstuurd-icoon { font-size: 40px; margin-bottom: 1rem; }
.verstuurd-titel { font-size: 22px; font-weight: 700; color: #111; margin-bottom: 8px; }
.verstuurd-sub { font-size: 14px; color: var(--tekst-licht); line-height: 1.7; }

.dashboard-kop { margin-bottom: 1.5rem; }
.dashboard-kop h1 { font-size: 22px; font-weight: 700; color: #111; margin-bottom: 4px; }
.dashboard-kop p { font-size: 13px; color: var(--tekst-licht); }

.dash-tabel { width: 100%; border-collapse: collapse; font-size: 13px; }
.dash-tabel th { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--tekst-licht); padding: 8px 12px; text-align: left; border-bottom: 1px solid var(--rand); }
.dash-tabel td { padding: 12px 12px; border-bottom: 1px solid var(--rand); vertical-align: middle; }
.dash-tabel tr:last-child td { border-bottom: none; }
.dash-tabel tr:hover td { background: #fafaf9; }
.dash-meta { font-size: 12px; color: var(--tekst-licht); }
.dash-acties { white-space: nowrap; }

.vac-kaart-status { display: inline-block; font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 4px; }
.badge-actief, .vac-kaart-status.badge-actief { background: #fdf0e6; color: #E87722; }
.badge-verlopen { background: #fff0f0; color: #cc0000; }
.badge-inactief { background: #f5f5f3; color: var(--tekst-licht); }

.vac-btn { font-size: 11px; font-family: var(--font); padding: 3px 10px; border-radius: 4px; cursor: pointer; border: 1px solid var(--rand); background: transparent; color: var(--tekst-mid); margin-left: 4px; text-decoration: none; display: inline-block; }
.vac-btn:hover { border-color: #E87722; color: #E87722; }
.vac-btn.groen { border-color: #E87722; color: #E87722; }
.vac-btn.rood:hover { border-color: #E8264A; color: #E8264A; }