body {
    font-family: Arial, sans-serif;
    background: #eaf2fb;

}

.invoerbalk {
    background: #d9ebfb;
    border: 1px solid #9ec3e6;
    padding: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

select, input {
    height: 26px;
    padding: 2px 6px;
    border: 1px solid #7f9db9;
    font-size: 13px;
}

button {
    background: #f4e2b6;
    border: 1px solid #a48b4c;
    padding: 4px 10px;
    cursor: pointer;
}

button:hover {
    background: #ecd39c;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background: white;
}

th {
    background: #d9ebfb;
    border: 1px solid #9ec3e6;
    font-size: 13px;
    padding: 4px;
}

td {
    border: 1px solid #c0c0c0;
    font-size: 13px;
    padding: 4px;
    text-align: center;
}

.verwijder {
    color: red;
    cursor: pointer;
    font-weight: bold;
}

#dynamischeVelden {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    width: 100%;
}

.veld {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.veld label {
    font-weight: bold;
    margin-bottom: 2px;
    white-space: nowrap;
}

.uitleg {
    background: #f7fbff;
    border: 1px solid #9ec3e6;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 13px;
}

.uitleg ul {
    margin: 0;
    padding-left: 18px;
}

.uitleg li {
    margin: 4px 0;
}


input[readonly] {
    background-color: #e0e0e0;   
    border: 1px solid #b0b0b0;
    color: #555;
    cursor: not-allowed;
}

input[readonly]:focus {
    outline: none;
    box-shadow: none;
}

input:invalid {
    border: 2px solid #c62828;
    background-color: #fdecea;
}

.header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 18px;
    background-color: #0496ff;
    color: white;
}

