body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #667eea, #764ba2);
  text-align: center;
  padding: 50px;
  color: white;
}

h1 {
  margin-bottom: 20px;
}

input {
  padding: 10px;
  width: 220px;
  border: none;
  border-radius: 5px;
  outline: none;
}

button {
  padding: 10px 15px;
  margin: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

/* Add button */
button:first-of-type {
  background-color: #28a745;
  color: white;
}

/* Clear All button */
button:nth-of-type(2) {
  background-color: #dc3545;
  color: white;
}

/* Delete button inside list */
li button {
  background-color: #ff4d4d;
  color: white;
  padding: 5px 10px;
}

ul {
  padding: 0;
}

li {
  list-style: none;
  background: white;
  color: black;
  margin: 10px auto;
  padding: 10px;
  width: 260px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
