    body {
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
        background: linear-gradient(to left, #EBA5C6, #f8d7e2); /* From dark pink to light whitish pink */
    }

    table { 
        width: 100%; 
        border-collapse: collapse; 
        margin-top: 20px; 
    }

    th, td { 
        padding: 10px; 
        text-align: left; 
        border-bottom: 1px solid #ddd; 
    }

    th { 
        background-color: #f4f4f4; 
    }

    .action-btn { 
        padding: 5px 10px; 
        text-decoration: none; 
        border-radius: 5px; 
    }

    .remove-btn { 
        background-color: #dc3545; 
        color: white; 
    }

    .update-btn { 
        background-color: #007bff; 
        color: white; 
    }

    .checkout-btn { 
        background-color: #28a745; 
        color: white; 
        padding: 10px 20px; 
        font-size: 16px; 
        text-decoration: none; 
        border-radius: 5px; 
        display: inline-block; 
        border: none; 
        cursor: pointer; 
    }

    .checkout-btn:hover { 
        background-color: #218838; 
    }

    .product-img { 
        width: 100%; 
        max-width: 80px; 
        height: auto; 
        object-fit: cover; 
        border-radius: 5px; 
    }


