
/* 自定义样式 */
.filter-btn.active {
    font-weight: 600;
}

.todo-item {
    transition: all 0.2s ease;
}

.todo-item:hover {
    transform: translateY(-2px);
}

.completed {
    text-decoration: line-through;
    color: #9CA3AF;
}
