/* Styles for device todos */
.todo-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.todo-checkbox {
    margin-right: 10px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.todo-header strong {
    margin-top: 1px;
}

/* Style for completed todos */
.todo-completed strong {
    text-decoration: line-through;
    opacity: 0.7;
}
