/* Awesome Chat Kit frontend tweaks without breaking upstream widget */

/* Example: optional badge style you can toggle via custom HTML if needed */
.ack-brand-badge {
	position: fixed;
	bottom: 18px;
	right: 18px;
	background: linear-gradient(135deg, #f3a0ff, #c85bff);
	color: #ffffff;
	padding: 6px 10px;
	border-radius: 8px;
	font: 600 12px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	box-shadow: 0 6px 18px rgba(200, 91, 255, 0.35);
	z-index: 2147483646;
	display: none; /* opt-in */
}

/* Hide default vendor branding links that appear near the launcher (if rendered) */
/* This targets common patterns; safe no-op if not found. */
[a*="anychat.one" i],
[href*="anychat.one" i] {
	display: none !important;
}

/* Polish: smoothen widget container corners if the vendor injects an iframe */
iframe[id*="anychat" i],
iframe[src*="anychat" i] {
	border-radius: 16px !important;
	overflow: hidden;
}

