/* Algemene stijlen */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.navbar {
    background-color: #0364c5;
    padding: 10px;
    color: white;
    text-align: center;
}
.frontend {
    background-color: #599bb3;
    padding: 10px;
    color: white;
    text-align: center;
}
.frontend a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}
.navbar a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.navbar a:hover {
    text-decoration: underline;
}

.navbar a.select{
    color: red;
    text-decoration: underline;
}

/* Widgets */
.widgets {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.widget {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 30%;
    text-align: center;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.widget h2 {
    margin: 10px 0;
    font-size: 24px;
    color: #0364c5;
}

.widget p {
    color: #666;
    font-size: 16px;
}

/* Tabel stijlen */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
    background-color: white;
	text-align: center;
}

table th {
    background-color: #f4f4f4;
    color: #0364c5;
}

table tr:hover {
    background-color: #e9e9e9;
}

/* Responsieve stijlen */
@media screen and (max-width: 768px) {
    .widgets {
        flex-direction: column;
        align-items: center;
    }

    .widget {
        width: 80%;
        margin-bottom: 20px;
    }
}
.error {
    color: red;
    font-weight: bold;
}

.compleet {
    color: green;
    font-weight: bold;
}
#search-results {
    border: 1px solid #ccc;
    border-radius: 5px;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background-color: #f9f9f9;
}

.search-result-item {
    margin-bottom: 10px;
}