header 
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: white; 
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.67);
}

header img 
{
    height: 75px; 
    width: auto;
}

nav ul 
{
    list-style: none;
    display: flex;
    gap: 67px;
    margin: 0;
    padding: 0;
}

nav a 
{
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-family: Arial;
}

nav a:hover 
{
    text-decoration: underline;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main 
{
  padding-bottom: 60px; 
}

body 
{
    background-color: #f2f2f2;
    color: #222;
    font-family: Arial, Helvetica, sans-serif;
}

.ict-tabel 
{
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.ict-tabel h1 
{
    text-align: center;
    margin-bottom: 20px;
    color: #b1003a;
}


.ict-tabel table 
{
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.ict-tabel th 
{
    text-align: left;
    background-color: #b1003a;
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
}

.ict-tabel td 
{
    padding: 12px 16px;
    border-top: 1px solid #f2f2f2;
    font-size: 14px;
    vertical-align: top;
}

.ict-tabel tr:hover 
{
    background-color: #f9f1f4;
}

.ict-tabel a 
{
    color: #b1003a;
    text-decoration: none;
    font-weight: 500;
}

.ict-tabel a:hover 
{
    text-decoration: underline;
}

.ict-tabel .meta 
{
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

.opmerking {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

footer 
{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f2f2f2;
  border-top: 2px solid #b1003a;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}