/**
 * Frontend Styles
 *
 * @package YUTU
 * @since   1.3.0
 */

.yutu-autofill-wrap {
	margin: 12px 0;
}

.yutu-autofill-btn {
	background: #4f46e5;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 10px 20px;
	font-size: 14px;
	cursor: pointer;
	transition: background .2s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.yutu-autofill-btn:before {
	content: '⚡';
}

.yutu-autofill-btn:hover {
	background: #4338ca;
}

.yutu-autofill-btn:disabled {
	opacity: .6;
	cursor: not-allowed;
}
