/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    margin: 0;
    padding: 0;
}

/* Header Styling */
h2 {
    font-weight: 700;
    color: #495057;
    border-bottom: 3px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
}

/* Card Styling */
.wishlist-item .card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.wishlist-item .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.card-body {
    text-align: center;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
}

/* Button Styling */
button {
    background-color: rgb(175, 82, 222);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  max-width:170px;
  /* margin-top: 20px; */
  transition: 0.5s;
  margin: auto;
}

button:hover {
    background-color: rgb(81, 27, 107);
    transform: translateY(-5px);
}

/* Empty Wishlist Message */
#wishlist-items p.text-center {
    font-size: 1.2rem;
    font-weight: 500;
    color: #6c757d;
    margin-top: 50px;
}
