.klas-select {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.klas-select label {
    margin-right: 1rem;
}

.afwezigen-input {
    display: flex;
    align-items: center;
}

.afwezigen-input label {
    margin-right: 3rem;
    border: solid 1px rgba(59,130,246,1);
}

.afwezigen-input label>input {
    border: 0;
}

.resultaten-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: auto;
    grid-column-gap: 32px;
    align-items: start;
    max-width: 768px;
}

.resultaten-grid-klas {
    display: flex;
    flex-direction: column;
    justify-items: center;
    flex: 1;
}

.resultaten-grid-klas h3 {
    margin-bottom: 8px;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
}

.resultaten-leerling {
    padding: 8px;
    padding-left: 12px;
    display: flex;
    flex-direction: row;
    border: solid 2px grey;
    border-bottom: 0;
    align-items: center;
    border-collapse: collapse;
}

.resultaten-leerling:last-of-type {
    border: solid 2px grey;
}

.resultaten-leerling-naam {
    flex: 1;
}

.resultaten-leerling-groen {
    margin-left: 8px;
    height: 20px;
    width: 20px;
    border-radius: 10px;
    background-color: green;
}

.resultaten-leerling-rood {
    margin-left: 8px;
    height: 20px;
    width: 20px;
    border-radius: 10px;
    background-color: darkred;
}

.resultaten-leerling-oranje {
    margin-left: 8px;
    height: 20px;
    width: 20px;
    border-radius: 10px;
    background-color: darkorange;
}