body {
  font-family: Arial, sans-serif;
  background: #f2f2f2;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

.wishlist-card {
  display: flex;
  background: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.wishlist-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-right: 20px;
}

.info h3 {
  font-size: 18px;
}

.info p {
  margin: 5px 0;
  font-size: 15px;
}

.buttons {
  margin-top: 10px;
}

.buttons button {
  padding: 7px 12px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  margin-right: 10px;
  font-size: 14px;
}

.move-cart {
  background: #ff9900;
  color: white;
}

.remove {
  background: #ff4f4f;
  color: white;
}
