



/*Tabeller*/

table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
}

table:first-of-type {
  margin-top: 0;
}

td,
th {
  border: 1px solid #000;
  text-align: left;
  padding: 8px;
  width: calc(100% / 6);
}

tr:nth-child(even) {
  background-color: #ddd;
}

