.wishlist-create {
    margin-bottom: 1em;
}
.wishlist-add-btn,
.wishlist-remove-btn {
    background: #f1f1f1;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 20px;
    cursor: pointer;
    margin: 2px;
}
.wishlist-add-btn:hover {
    background: #d1ffd8;
}
.wishlist-remove-btn:hover {
    background: #ffd1d1;
}

/* Add to wishlist button */
.wishlist-add-btn {
    transition: all 0.3s ease;
    font-size: 1.2em;
}

.wishlist-add-btn.added {
    color: green;
}

.wishlist-add-btn.error {
    color: red;
}
