/* Employee Daily Checklist Frontend Styles */

#edc-checklist-form {
    margin: 20px 0;
}

#edc-checklist-form table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

#edc-checklist-form th,
#edc-checklist-form td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

#edc-checklist-form th {
    background-color: #f8f8f8;
    font-weight: bold;
}

#edc-checklist-form button {
    background-color: #2271b1;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
}

#edc-checklist-form button:hover {
    background-color: #135e96;
}

#edc-response {
    margin-top: 15px;
}

#edc-response p.success {
    color: green;
    padding: 10px;
    background-color: #f0fff0;
    border-left: 4px solid green;
}

#edc-response p.error {
    color: red;
    padding: 10px;
    background-color: #fff0f0;
    border-left: 4px solid red;
}

.task-required {
    color: #d63638;
    font-weight: bold;
}

.task-optional {
    color: #2271b1;
    font-style: italic;
}

textarea#employee_comment {
    width: 100%;
    max-width: 600px;
    padding: 8px;
}

.checklist-count {
    display: inline-block;
    padding: 2px 8px;
    background: #f0f0f0;
    border-radius: 10px;
    font-size: 0.9em;
    margin-left: 5px;
}