#chat-bubble-wrapper-bf165e89 {
	position: fixed;
	bottom: 30px;
	z-index: 999999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#chat-bubble-wrapper-bf165e89.cb-pos-right { right: 30px; }
#chat-bubble-wrapper-bf165e89.cb-pos-left { left: 30px; }

#chat-bubble-toggle-bf165e89 {
	height: 60px;
	border-radius: 30px;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s;
    padding: 0 20px;
    gap: 10px;
}
#chat-bubble-toggle-bf165e89:hover {
	transform: scale(1.05);
}

.cb-toggle-text-bf165e89 {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

#chat-bubble-window-bf165e89 {
	position: absolute;
	bottom: 80px;
	width: 320px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 5px 25px rgba(0,0,0,0.2);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: opacity 0.3s, transform 0.3s;
	opacity: 1;
	transform: translateY(0);
}

.cb-pos-right #chat-bubble-window-bf165e89 { right: 0; }
.cb-pos-left #chat-bubble-window-bf165e89 { left: 0; }

#chat-bubble-window-bf165e89.cb-hidden {
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
}

#chat-bubble-header-bf165e89 {
	padding: 15px 20px;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
}

#chat-bubble-close-bf165e89 {
	background: transparent;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	line-height: 1;
}

#chat-bubble-messages-bf165e89 {
	padding: 20px;
	height: 250px;
	overflow-y: auto;
	background: #f9f9f9;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cb-message {
	max-width: 80%;
	padding: 10px 14px;
	border-radius: 14px;
	font-size: 14px;
	line-height: 1.4;
	animation: cb-fade-in 0.3s ease-out;
}

.cb-bot {
	background: #e9ecef;
	color: #333;
	align-self: flex-start;
	border-bottom-left-radius: 4px;
}

.cb-user {
	background: #0073aa;
	color: #fff;
	align-self: flex-end;
	border-bottom-right-radius: 4px;
}

#chat-bubble-options-bf165e89 {
	padding: 15px;
	background: #fff;
	border-top: 1px solid #eee;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.cb-option-btn {
	background: transparent;
	border: 1px solid #ddd;
	border-radius: 20px;
	padding: 8px 12px;
	font-size: 10px;
	cursor: pointer;
	text-align: left;
	transition: all 0.2s;
	color: #333;
}
.cb-option-btn:hover {
	border-color: #0073aa;
	color: #0073aa;
	background: #f4f8fa;
}

.cb-typing {
	display: flex;
	gap: 4px;
	padding: 12px 16px;
	align-items: center;
}
.cb-dot {
	width: 6px;
	height: 6px;
	background: #888;
	border-radius: 50%;
	animation: cb-typing-dot 1.4s infinite ease-in-out both;
}
.cb-dot:nth-child(1) { animation-delay: -0.32s; }
.cb-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes cb-typing-dot {
	0%, 80%, 100% { transform: scale(0); }
	40% { transform: scale(1); }
}

@keyframes cb-fade-in {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.cb-fallback {
	padding: 10px 15px 15px;
	font-size: 12px;
	text-align: center;
	color: #666;
	background: #fff;
}
.cb-fallback a {
	color: #0073aa;
	text-decoration: none;
}