.habit-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.habit {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; background: #fff;
}
.habit .check {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  font-size: 1.1rem; flex-shrink: 0; transition: all 0.15s;
}
.habit.done .check { background: var(--primary); border-color: var(--primary); color: #fff; }
.habit .info { flex: 1; }
.habit .name { font-weight: 600; }
.habit .streak { font-size: 0.78rem; color: var(--warn); font-weight: 700; }
.habit .del { background: none; border: none; color: var(--bad); cursor: pointer; font-size: 1.1rem; }