* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: red;
    margin: 0;
    padding: 0;
}

.header-container {
    text-align: center;
}

.header-container h1 {
    margin: 0;
    font-size: 2rem;
    background-color: #f8f9fa;
    padding: 20px;
    color: #333;
}

.header-container h3 {
    font-size: 1.2rem;
    color: #555;
    padding: 10px;
}

/* Wishlist Container */
.wishlist-container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(177, 25, 25, 0.4);
}

.wishlist-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.wishlist-table th, .wishlist-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.wishlist-table th {
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
}

.wishlist-table td {
    background-color: #f9f9f9;
}

.wishlist-item-img img {
    width: 80px;
    height: auto;
    border-radius: 5px;
}

.wishlist-item-details h3 {
    margin: 5px 0;
    font-size: 1.1em;
}

.wishlist-item-price {
    font-size: 1.2em;
    font-weight: bold;
    color: green;
}

.move-to-cart-btn, .remove-btn {
    padding: 8px 12px;
    background-color: pink;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
}

.move-to-cart-btn:hover, .remove-btn:hover {
    background-color: #ff80c1;
}

/* Back to Cart Button Styling */
.back-to-cart-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.back-to-cart-btn:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    text-align: center;
    background-color: orange;
    color: white;
    padding: 15px 0;
    margin-top: 30px;
}

footer p {
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .wishlist-table th, .wishlist-table td {
        font-size: 0.9rem;
        padding: 10px;
    }

    .wishlist-item-img img {
        width: 60px;
    }

    .header-container h1 {
        font-size: 1.5rem;
    }

    .header-container h3 {
        font-size: 1rem;
    }

    .move-to-cart-btn, .remove-btn {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .wishlist-container {
        width: 95%;
        padding: 15px;
    }

    .wishlist-item-details h3 {
        font-size: 1rem;
    }

    .back-to-cart-btn {
        font-size: 1rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .wishlist-item-img img {
        width: 50px;
    }

    .wishlist-item-details h3 {
        font-size: 0.9rem;
    }

    .wishlist-container {
        width: 100%;
        padding: 10px;
    }

    .header-container h1 {
        font-size: 1.2rem;
    }

    .move-to-cart-btn, .remove-btn {
        font-size: 0.85rem;
        padding: 6px 8px;
    }

    .wishlist-table th, .wishlist-table td {
        font-size: 0.8rem;
        padding: 8px;
    }

    .back-to-cart-btn {
        font-size: 1rem;
        padding: 8px 15px;
    }
}
