.mumbo-aa-status {
	display: block;
	margin-top: 4px;
	font-size: 0.85em;
	line-height: 1.3;
	min-height: 1.2em;
}

.mumbo-aa-status.is-loading {
	color: #777;
}

.mumbo-aa-status.is-loading::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-right: 6px;
	border: 2px solid #ccc;
	border-top-color: #555;
	border-radius: 50%;
	animation: mumbo-aa-spin 0.7s linear infinite;
	vertical-align: -1px;
}

.mumbo-aa-status.is-success {
	color: #1e7e34;
}

.mumbo-aa-status.is-error {
	color: #b32d2e;
}

/*
 * Locked (readonly) fields keep the theme's own styling on purpose.
 * The class is only used by JS; no visual override here.
 */
input.mumbo-aa-locked {
	cursor: default;
}

/* Make sure the row after the street/number pair clears the floats. */
.woocommerce form .form-row.mumbo-aa-number + .form-row {
	clear: both;
}

@keyframes mumbo-aa-spin {
	to { transform: rotate(360deg); }
}
