body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

header {
    background: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.icons {
    display: flex;
    gap: 20px;
}

main {
    width: 80%;
    margin: 20px auto;
    text-align: center;
}

.wishlist {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: auto;
    height: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.wishlist ul {
    list-style: none;
    padding: 0;
}

.wishlist li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.wishlist img {
    width: 80px;
    height: auto;
    margin-right: 10px;
}

.wishlist .remove {
    background-color: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}
