/* BookiQ stijl. Wissel van thema door alleen deze accentkleuren aan te passen.
   Donker/limegroen alternatief: --accent: #b6e400; --accent-hover: #9ec400; */
:root {
  --accent: #3a4ff8;
  --accent-hover: #2e40d6;
  --tekst: #1b1d29;
  --tekst-zacht: #6b7280;
  --achtergrond: #eef1f7;
  --kaart: #ffffff;
  --rand: #e2e6ef;
  --fout: #c0392b;
  --radius: 14px;
  --schaduw: 0 10px 30px rgba(20,25,60,0.08);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--achtergrond);
  color: var(--tekst);
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.kaart {
  background: var(--kaart);
  width: 100%;
  max-width: 380px;
  padding: 36px 32px;
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
}
.merk {
  font-size: 32px; font-weight: 800; letter-spacing: -0.5px;
  margin: 0; text-align: center;
}
.merk .accent { color: var(--accent); }
.subtitel {
  text-align: center; color: var(--tekst-zacht);
  margin: 6px 0 24px; font-size: 15px;
}
form { display: flex; flex-direction: column; gap: 14px; }
label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px; font-weight: 600;
}
input {
  padding: 12px 14px; border: 1px solid var(--rand);
  border-radius: 10px; font-size: 15px; outline: none;
}
input:focus { border-color: var(--accent); }
button {
  margin-top: 6px; padding: 13px; background: var(--accent);
  color: #fff; border: none; border-radius: 10px;
  font-size: 15px; font-weight: 700; cursor: pointer;
}
button:hover { background: var(--accent-hover); }
.fout {
  background: #fdecea; color: var(--fout);
  padding: 10px 12px; border-radius: 10px;
  font-size: 14px; margin: 0 0 16px;
}
/* Actieknopjes in tabellen netjes uitlijnen */
.acties { align-items: center; }
.acties .knop-klein {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  height: 32px;
  margin: 0;
}
.acties form.inline { display: inline-flex; margin: 0; }