body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #a8edea, #fed6e3);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: linear-gradient(135deg, #ffffff, #f1f1f1);
  padding: 25px;
  border-radius: 15px;
  width: 380px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2), 0 6px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

h2 {
  text-align: center;
  color: #f04208;
  margin-bottom: 15px;
}

input {
  width: 70%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

button {
  padding: 10px 14px;
  margin-left: 5px;
  border: none;
  background: #28a745;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #218838;
  transform: scale(1.05);
}

ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

li {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  padding: 10px;
  margin: 7px 0;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btns button {
  margin-left: 5px;
  background: #007bff;
  border-radius: 6px;
}

.btns button:hover {
  background: #0056b3;
}

.delete {
  background: #dc3545 !important;
}

.delete:hover {
  background: #c82333 !important;
}

