/* Basis reset om verschillen tussen browsers te verminderen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Algemene stijlen */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding: 20px;
}

/* Typografie */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    color: #444;
}

p {
    margin-bottom: 15px;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Lijsten */
ul, ol {
    margin: 15px 0;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Tabelstijlen */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

/* Formulieren */
input, textarea, select, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Knoppen */
button {
    background-color: #3498db;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #2980b9;
}