/* Prepared Acceptance — Amelia booking widget colors
 *
 * Amelia's own Settings > Customize color panel didn't visibly change
 * anything on the live booking widget — its front end is a Vue app
 * that reads color CSS custom properties (--am-c-*), which are set in
 * its own bundled style.css as static defaults, not regenerated from
 * the Customizer settings we could find. These inherit through the DOM
 * regardless of Vue's scoped-style attributes, so overriding them at
 * :root is the reliable way to reskin the widget instead of chasing
 * whichever internal setting actually drives the rendered output.
 */
:root {
	/* Amelia's own style.css also declares several of these at :root and,
	   despite this stylesheet being enqueued at a later priority, ends up
	   output after ours anyway — so later source order isn't reliable
	   here. !important on custom properties sidesteps the question. */
	--am-c-primary: #2f4a3a !important;
	--am-c-btn-prim: #2f4a3a !important;
	--am-c-btn-prim-text: #fbfaf6 !important;
	--am-c-btn-sec: #fbfaf6 !important;
	--am-c-btn-sec-text: #2f4a3a !important;
	--am-c-btn-first: #2f4a3a !important;
	--am-c-btn-second: #fbfaf6 !important;
	--am-c-success: #5a8a5f !important;
	--am-c-sb-bgr: #2f4a3a !important;
	--am-c-sb-text: #fbfaf6 !important;
}
