/* Reset default styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(to right, #2c3e50, #3498db);
  min-height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

h1 {
  margin-bottom: 30px;
  font-size: 2.5rem;
  color: #f1c40f;
}

.input-group {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 500px;
  justify-content: center;
  margin-bottom: 20px;
}

.input-group input {
  flex: 1;
}


input {
  padding: 10px;
  width: 60%;
  max-width: 400px;
  border: none;
  border-radius: 6px;
  margin-right: 10px;
  font-size: 1rem;
}

button {
  padding: 10px 16px;
  border: none;
  background-color: #27ae60;
  color: white;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #1abc9c;
}

ul {
  list-style: none;
  margin-top: 30px;
  width: 100%;
  max-width: 500px;
}

li {
  background-color: #34495e;
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: 8px;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

li button.delete {
  background-color: #e74c3c;
  padding: 8px 12px;
}

li button.delete:hover {
  background-color: #c0392b;
}
