/**
 * Cust Order V1 — "Find an order by number" search box on the customer's
 * My Account > Orders list. Deliberately minimal/theme-agnostic (no
 * hard-coded fonts, relies on inherited page styles) so it doesn't fight
 * with the active theme. Only loaded on the orders endpoint — see
 * Cust_Order_Account::maybe_enqueue_assets().
 *
 * A single-row flex layout (label, input, button side by side) is used
 * instead of a stacked label-above-input layout specifically to avoid the
 * label/field spacing inconsistency that had to be fixed elsewhere on
 * this dashboard (see SJG-Terms' CHANGELOG.md, V5) — there's no
 * label-to-input vertical gap to get wrong if there's no vertical stack
 * to begin with.
 */

.cust-order-search-form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 1.5em;
}

.cust-order-search-form label {
	font-weight: 600;
	margin: 0;
}

.cust-order-search-form input[type="text"] {
	max-width: 160px;
	box-sizing: border-box;
}

.cust-order-search-notice {
	margin: 0 0 1.5em;
}
