#logboekForm {
    max-width: 500px;
    padding: 20px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
}

#logboekForm input[type="text"],
#logboekForm input[type="number"],
#logboekForm input[type="date"],
#logboekForm select {
    width: 100%;
    padding: 8px 10px;
    margin-top: 5px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    transition: border-color 0.2s ease-in-out;
}

#logboekForm input[type="text"]:focus,
#logboekForm input[type="number"]:focus,
#logboekForm input[type="date"]:focus,
#logboekForm select:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

fieldset {
    border: 1px solid #bbb;
    padding: 15px 20px 20px 20px;
    margin-top: 20px;
    border-radius: 6px;
    background: #fff;
}

legend {
    font-weight: bold;
    padding: 0 10px;
    font-size: 16px;
    color: #0073aa;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 3px;
}

button {
    cursor: pointer;
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.2s ease-in-out;
    margin-top: 10px;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

button:hover:not(:disabled) {
    background-color: #005f8d;
}

/* Task list inside medewerker block */
.taak-lijst {
    margin-top: 12px;
    padding-left: 0;
}

.taak-item {
    background: #e7f3fc;
    border: 1px solid #b0d4f1;
    padding: 8px 10px;
    margin-bottom: 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.taak-item button {
    background: transparent;
    color: #c0392b;
    border: none;
    font-size: 16px;
    padding: 0 6px;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.taak-item button:hover {
    color: #e74c3c;
}

/* Add medewerker button styling */
#addMedewerkerBtn {
    width: auto;
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 30px;
}

/* Submit button styling */
#submitLogboek {
    width: 100%;
    font-weight: bold;
    padding: 12px 0;
}

/* Form status text */
#form-status {
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px;
    color: #0073aa;
    min-height: 24px;
}
