/* My Account > Addresses (woocommerce/myaccount/my-address.php override).
 * Both the "Add <address>" link (no address saved yet) and the "Edit
 * <address>" link (address already saved) were plain inline text next to
 * the h2, easy to miss as clickable. Both render as solid buttons filled
 * with the site's primary accent orange (--theme-button-background-initial-
 * color, #B86B0B per DESIGN.md) at rest, darkening to
 * --theme-button-background-hover-color on hover/focus - same as Blocksy's
 * own buttons, so this re-themes automatically if the Customizer accent
 * color ever changes.
 */
.woocommerce-Address-title.title {
	flex-wrap: wrap;
	row-gap: 10px;
}

.woocommerce-Address-title .amulet-address-action--add,
.woocommerce-Address-title .amulet-address-action--edit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--theme-button-min-height);
	padding: var(--theme-button-padding);
	border: var(--theme-button-border);
	border-radius: var(--theme-button-border-radius, 3px);
	background-color: var(--theme-button-background-initial-color);
	color: var(--theme-button-text-initial-color);
	font-family: var(--theme-button-font-family, var(--theme-font-family));
	font-size: var(--theme-button-font-size);
	font-weight: var(--theme-button-font-weight);
	line-height: var(--theme-button-line-height);
	text-decoration: none;
}

.woocommerce-Address-title .amulet-address-action--add:hover,
.woocommerce-Address-title .amulet-address-action--add:focus,
.woocommerce-Address-title .amulet-address-action--edit:hover,
.woocommerce-Address-title .amulet-address-action--edit:focus {
	background-color: var(--theme-button-background-hover-color);
	color: var(--theme-button-text-hover-color);
}
