.navigatie-knoppen {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.navigatie-knoppen a {
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    background-color: #f2f2f2;
    border: 1px solid #000;
    border-radius: 5px;
    margin-right: 5px;
}

.navigatie-knoppen a:hover {
    background-color: #c1c1c1;
}

.download-knop {
    margin-left: auto;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
	
.header-buttons {
    display: flex;
    gap: 10px; /* Ruimte tussen de knoppen */
}
	
.btn {
	padding: 10px 15px;
	font-size: 16px;
	font-weight: bold;
	color: #000;
	text-decoration: none;
	background-color: #f2f2f2;
	border: 1px solid #000;
	border-radius: 5px;
}
	
.btn:hover {
	background-color: #c1c1c1;
}

table {
	border-collapse: collapse;
	width: 100%;
}

th, td {
	text-align: center;
	padding: 5px;
}

th {
	background-color: #f2f2f2;
	border: 1px solid #000;
	border-bottom: none;
}

th:last-child {
	border-bottom: none;
}

.header-cell {
	border: 1px solid #000;
	border-bottom: none;
}

.label-row {
	background-color: #f2f2f2;
	font-weight: bold;
	border: 1px solid #000;
	border-top: none;
}

.label-row td {
	border-top: none;
	border-bottom: 1px solid #000;
}

.bordered {
	border: 1px solid #000;
}

.hour-column {
	text-align: center;
}

.no-right-border {
	border-right: none;
}

.no-left-border {
	border-left: none;
}