/* ✅ Estilos para Seguimiento de Hábitos */
#habits {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

#habitForm {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

#habitForm input {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 8px;
  margin-right: 10px;
}

#habitForm button {
  background: #4cafef;
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

#habitForm button:hover {
  background: #2196f3;
}

.habit {
  margin-bottom: 15px;
}

.habit h3 {
  margin-bottom: 5px;
}

.habit-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.habit-days div {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.habit-days div.done {
  background: #4caf50;
  color: white;
  font-weight: bold;
}
