/* Algemene stijlen */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Navigatie als lijst */
.side-nav {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-bottom: 20px;
}

.side-nav h3 {
    text-align: center;
    color: #444;
}

.side-nav ul {
    list-style: none;
    padding: 0;
}

.side-nav ul li {
    margin: 10px 0;
}

.side-nav ul li a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    display: block;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

.side-nav ul li a:hover {
    background: #007bff;
    color: white;
}

/* Content secties */
.content {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Highlight effect */
section {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

section:hover, section:target {
    transform: scale(1.02);
    box-shadow: 0px 0px 10px rgba(0, 0, 255, 0.2);
    background-color: #f0f8ff;
}
