/* Stijling voor een tabel met 2 kolommen */
.kolommen-2-tabel {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  word-wrap: break-word;
}

.kolommen-2-tabel th,
.kolommen-2-tabel td {
  border: 1px solid #000;
  padding: 8px;
}

/* Linkerkolom = lichtblauw */
.kolommen-2-tabel td:first-child,
.kolommen-2-tabel th:first-child {
  background-color: #E3F6FF ;
}

/* Rechterkolom = lichtgeel */
.kolommen-2-tabel td:last-child,
.kolommen-2-tabel th:last-child {
  background-color: lightyellow;
}