/**
 * ST Custom Booking Fields - Cart Display Styles
 * Positioning and styling of custom fields in the cart
 */

/* Make the product name cell a flex container to enable reordering */
td.product-name {
    display: flex;
    flex-direction: column;
}

/* EXAMPLE 1: Move custom fields to appear just before the last paragraph */
/* This pushes them up by using a high order value on other paragraphs */
 /* p.booking-item-description:not(.st-custom-field) {
    order: 1;
} */

/* p.st-custom-field {
    order: 20;
}  */

/* EXAMPLE 2: Add spacing before custom fields (uncomment to use) */
/*
p.st-custom-field {
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}
*/

/* EXAMPLE 3: Style custom fields differently (uncomment to use) */
/*
p.st-custom-field {
    font-weight: bold;
    color: #0073aa;
}
*/

/* EXAMPLE 4: Use flex-grow to push to bottom (uncomment to use) */
/*
p.st-custom-field {
    margin-top: auto;
}
*/

