/* reset.css */
/* Een moderne, lichte CSS-reset */

/* 1. Gebruik een meer natuurlijke box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Verwijder standaardmarges */
* {
  margin: 0;
  padding: 0;
}

/* 3. Zorg dat body de volledige hoogte pakt en een consistente font-stack heeft */
html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background-color: #fff;
  color: #000;
}

/* 4. Afbeeldingen en media schalen netjes mee */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 5. Formulieren erven fonts */
input, button, textarea, select {
  font: inherit;
}

/* 6. Verwijder lijststijlen waar die niet expliciet nodig zijn */
ul, ol {
  list-style: none;
}

/* 7. Links erven kleur en geen standaard underline */
a {
  color: inherit;
  text-decoration: none;
}

/* 8. Tabellen consistent maken */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type="search"]::-webkit-search-cancel-button {
  display: none;
}
input[type="search"]::-ms-clear {
  display: none; /* voor oude Edge */
}