.wishlist-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.wishlist-container h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead th {
    text-align: left;
    padding: 10px;
    background: #f1f1f1;
}

tbody td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
}

.product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.golden-btn {
    display: inline-block;
    padding: 8px 12px;
    background: #f1c40f;
    color: black;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 5px;
    transition: 0.3s;
}

.golden-btn:hover {
    background: #d4ac0d;
}

.remove-btn {
    display: inline-block;
    padding: 5px 10px;
    background: #e74c3c;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.remove-btn:hover {
    background: #c0392b;
}