/**
 * Frontend A/B Test Container Styles
 *
 * @package    MFAB2
 * @subpackage MFAB2/assets/css/frontend
 */

/* Basic styling for A/B test containers */
.mfab2-ab-test {
	position: relative;
}

/* Optional: Add a subtle indicator in debug mode */
body.mfab2-debug .mfab2-ab-test::before {
	content: 'A/B Test';
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(255, 152, 0, 0.8);
	color: #fff;
	padding: 2px 8px;
	font-size: 11px;
	font-weight: 600;
	z-index: 9999;
	border-radius: 0 0 4px 0;
}
