/* Reset / base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
}

.linksboven {
	background: #f4f4f4;	
}
.rechtsboven {
    font-size: x-large;
	background: #c029a5;
	color: #ffffff;
}
.linksonder {
	background: #c029a5;
	color: #ffffff;
}
.rechtsonder {
	background: #f4f4f4;
}
.midden {
	background: #f4f4f4;
}

/* Layout sections */
.header,
.footer {
/*    background: #2c3e50; 
    color: white; */
    text-align: left;
    padding: 1rem;
}

.container {
    display: flex;
    flex-direction: column; /* Mobile-first */
    padding: 1rem;
    gap: 1rem;
}

.content,
.sidebar {
/*    background: #f4f4f4; */
    padding: 1rem;
    border-radius: 4px;
}

/* Responsive breakpoint */
@media (min-width: 768px) {
    .container {
        flex-direction: row;
    }

    .content {
        flex: 3;
    }

    .sidebar {
        flex: 1;
    }
}