body {
  font-family: Arial, sans-serif;
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1rem;
  background: #fff5f5;
  color: #333;
}

header {
  text-align: center;
  margin-bottom: 2rem;
  color: #cc3366;
}

h1, h2 {
  margin-bottom: 0.5rem;
}

form {
  background: #ffe6eb;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0 0 8px rgba(204, 51, 102, 0.2);
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
}

button {
  margin-top: 1rem;
  background-color: #cc3366;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1rem;
}

button:hover {
  background-color: #991f4d;
}

#mood-list ul {
  list-style: none;
  padding-left: 0;
}

#mood-list li {
  background: white;
  border: 1px solid #ccc;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 5px;
  position: relative;
}

.delete-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  background: #ff4d4d;
  border: none;
  color: white;
  border-radius: 3px;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
}

.delete-btn:hover {
  background: #cc0000;
}
