/* Make checkboxes more prominent and interactive */
.task-list-control input[type="checkbox"]:not([disabled]) {
    cursor: pointer;
}

.task-list-control input[type="checkbox"]:not([disabled]):hover {
    transform: scale(1.1);
}