/* Basisinstellingen */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

/* Content mooi centreren */
body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 20px;
}

/* Wrapper die de tabel bevat */
.table-wrapper {
  width: 100%;
  max-width: 1000px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  border-radius: 8px;
}

/* Tabel met achtergrond */
table {
  width: 100%;
  border-collapse: collapse;
  background-image: url('achtergrond.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

/* Tabellen en cellen met overlay */
th, td {
  padding: 16px;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.5); /* donkere laag voor contrast */
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: black; /* <-- ZET EXPLICIET DE KLEUR HIER */
}

/* Zorg dat op mobiel alles past */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  th, td {
    padding: 12px;
    font-size: 15px;
  }

  table {
    font-size: 14px;
  }
}
