body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #d8cbb9, #7058c5);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.container {
  width: 90%;
  max-width: 500px;
  background: rgb(66, 166, 206);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

h1 {
  margin-bottom: 20px;
}

.add-habit {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.add-habit input {
  padding: 10px;
  width: 65%;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.add-habit button {
  padding: 10px 14px;
  background: #4a08c4;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.add-habit button:hover {
  background: #43a047;
}

.habit {
  background: #e3f2fd;
  margin: 10px 0;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.habit-details {
  display: flex;
  align-items: center;
  gap: 10px;
}

.delete-btn {
  background: #ff5252;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.delete-btn:hover {
  background: #e53935;
}

#badges span {
  display: inline-block;
  background: gold;
  padding: 6px 10px;
  margin: 5px;
  border-radius: 8px;
  font-weight: bold;
}
