    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background-color: #E6E6E6;
      color: #333;
      line-height: 1.6;
    }

    header {
      position: sticky;
      top: 0;
      background-color: #E6E6E6;
      color: #000;
      padding: 20px;
      text-align: center;
      z-index: 1000;
    }

    header img.logo {
      max-height: 80px;
      margin-bottom: 10px;
    }

    nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      background-color: #fff;
      border-top: 2px solid #da8e30;
      border-bottom: 2px solid #da8e30;
    }

    nav a {
      padding: 15px 20px;
      color: #000;
      text-decoration: none;
      font-weight: bold;
    }

    nav a:hover {
      background-color: #ffe0b2;
    }


    .section {
      padding: 10px 10px;
      max-width: 950px;
      margin: 0 auto;
    }

    .section h3 {
      color: #da8e30;
      margin-bottom: 20px;
    }

    .news {
      background-color: #fffaf0;
      padding: 20px;
      border: 1px solid #da8e30;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .agenda-item {
      background-color: #fffaf0;
      padding: 20px;
      border: 1px solid #da8e30;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }
    .agenda-item h4 {
      margin: 0 0 0.5rem;
      color: #da8e30;
    }
    .agenda-item p {
      margin: 0;
      color: #333;
    }

    form label {
      display: block;
      margin-top: 10px;
    }

    form input, form textarea {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    form button {
      background-color: #da8e30;
      color: white;
      border: none;
      padding: 10px 20px;
      margin-top: 15px;
      cursor: pointer;
      border-radius: 5px;
    }

    form button:hover {
      background-color: #e65c00;
    }

    footer {
      background-color: #da8e30;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: 40px;
    }

    @media (max-width: 768px) {
      nav {
        flex-direction: column;
      }
    }


    
        div ul { list-style: disc; padding-left: 2em; }
        div ol { list-style: decimal; padding-left: 2em; }

        /* Tabel styling */
.beheer-tabel {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
    
}
.beheer-tabel th, .beheer-tabel td {
    padding: 5px 5px;
    text-align: left;
    border-bottom: 1px solid #ccc;
    font-size: 13px;
    
}
.beheer-tabel th {
    background-color: #D7822A;
    color: white;

}
.beheer-tabel tr:nth-child(even) {
    background-color: #e9e9e9 ;
    color: #000;
}

.beheer-tabel tr:hover {
    background-color: #E6E6E6 ;
    color: #000;
    transition: background-color 0.3s ease, transform 0.2s ease;
}


/* Responsive tabel-wrapper */
.beheer-container {
    overflow-x: auto;
    max-width:95%;
    padding: 1rem;
    box-sizing: border-box;
}

/* Tabel zelf */
.beheer-tabel {
    min-width: 800px; /* Zorg dat kolommen niet samendrukken */
    border-collapse: collapse;
}

/* Tabel-koppen en cellen */
.beheer-tabel th,
.beheer-tabel td {
    padding: 0.75rem 1rem;
    white-space: nowrap;
}