.wcx-button-wrapper {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}

.wcx-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	border: 1px solid #ccd0d4;
	background: #fff;
	color: #1d2327;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.wcx-button:hover {
	background: #f6f7f7;
}

.wcx-button:disabled {
	opacity: 0.72;
	cursor: not-allowed;
}

.wcx-button--disabled {
	opacity: 0.72;
}

.wcx-button-icon img {
	display: block;
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.wcx-feedback {
	font-size: 12px;
	color: #2271b1;
	min-height: 16px;
}

.wcx-feedback.is-error {
	color: #b32d2e;
}

.wcx-button-wrapper.is-loading .wcx-button {
	opacity: 0.75;
}

.wcx-button-wrapper.is-success .wcx-button {
	border-color: #00a32a;
}

.wcx-button-wrapper.is-error .wcx-button {
	border-color: #b32d2e;
}
