body {
  font-family: Arial, sans-serif;
  background: #f4f6f8;
  padding: 40px;
}

h1 {
  color: #333;
}

input {
  padding: 10px;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  padding: 10px 14px;
  margin-left: 5px;
  border: none;
  border-radius: 6px;
  background: #4CAF50;
  color: white;
  cursor: pointer;
}

button:hover {
  background: #45a049;
}

li {
  margin-top: 10px;
  list-style: none;
  background: white;
  padding: 10px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

li button {
  background: #e74c3c;
}

li button:hover {
  background: #c0392b;
}