.aih-bubble {
	position: fixed;
	bottom: 24px;
	z-index: 99999;
}

.aih-position-right {
	right: 24px;
}

.aih-position-left {
	left: 24px;
}

.aih-bubble-toggle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 20px;
	background: #25d366;
	border: none;
	border-radius: 50px;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
	transition: all 0.25s ease;
	line-height: 1;
}

.aih-bubble-toggle:hover {
	background: #20bd5a;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.aih-bubble-toggle svg {
	flex-shrink: 0;
}

.aih-bubble-text {
	white-space: nowrap;
}

@media (max-width: 480px) {
	.aih-bubble-toggle {
		padding: 14px;
		border-radius: 50%;
	}

	.aih-bubble-text {
		display: none;
	}
}
