/* My Account → view-order: order-table cells at 20px (Tif, Aug 6 2026).
   Header cells first, then the data cells to match (Tif, same day).
   Scoped to the view-order endpoint's body class so shop/cart tables are untouched.

   ⚠️ `!important` is required, not lazy. Elementor emits per-widget typography CSS at
   `.elementor-372 .elementor-element.elementor-element-6704e85 .order_details thead th`
   — specificity (0,4,2), which beats any sane body-scoped selector (this one is (0,1,3)).
   Out-specifying it would also be fragile: Elementor regenerates that block, with a new
   element id, every time the page is edited. */
body.woocommerce-view-order table th,
body.woocommerce-view-order table td {
	font-size: 20px !important;
}
