<style>
        /* General styles */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #f4f4f4;
        }

        .container {
            max-width: 900px; /* Set container width */
            margin: auto;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        input, select, button {
            padding: 10px;
            margin: 5px 0;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .product-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .product-row select {
            flex: 2;
        }

        .product-row input[type="number"] {
            flex: 1;
            max-width: 80px;
        }

        .product-row button {
            background-color: #dc3545; /* Delete button color */
            color: white;
            border: none;
            cursor: pointer;
        }

        .product-row button:hover {
            background-color: #a71d2a; /* Darker red on hover */
        }

        .total {
            font-size: 18px;
            font-weight: bold;
            text-align: right;
            margin-top: 20px;
        }
        /* Style for the container row */
        .dropdown-row {
            display: flex;
            align-items: center; /* Vertically align items */
            gap: 15px; /* Space between dropdowns */
            margin-top: 15px; /* Add some spacing from the top */
        }

        /* Style for dropdown labels */
        .dropdown-row label {
            margin-right: 10px;
            font-weight: bold; /* Optional: Bold labels for clarity */
        }

        /* Style for the dropdowns */
        .dropdown-row select {
            padding: 5px;
            font-size: 14px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
</style>