/* ---------- Habit Cards ---------- */
#habitsContainer .habit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  margin: 8px 0;
  background: #ffb0b0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background 0.3s, transform 0.2s;
}

#habitsContainer .habit:hover {
  transform: translateY(-2px);
  background: #ffa5a5;
}

body.dark #habitsContainer .habit {
  background: #333;
}

body.dark #habitsContainer .habit:hover {
  background: #444;
}

/* ---------- Delete Button ---------- */
.delHabit {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #ff4d4d;
  transition: color 0.2s, transform 0.1s;
}

.delHabit:hover {
  color: #ff0000;
  transform: scale(1.2);
}
