#janio-bubble {
	position: fixed;
	bottom: 25px;
	right: 25px;
	z-index: 9999;
	display: none;
	align-items: flex-end;
	flex-direction: row-reverse;
	align-items: center;
	gap: 8px;
}
#janio-bubble-btn {
	background-color: #2563eb;
	color: white;
	border: none;
	border-radius: 50%;
	width: 65px;
	height: 65px;
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	cursor: pointer;
	transition: transform 0.3s;
}
#janio-bubble-btn:hover {
	transform: scale(1.05);
}
#janio-message-box {
	background: white;
	border-radius: 16px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.15);
	padding: 20px;
	max-width: 300px;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.4s ease;
	font-family: system-ui, sans-serif;
	font-size: 15px;
	line-height: 1.4;
}
#janio-message-box.show {
	opacity: 1;
	transform: translateY(0);
}
#janio-close-btn {
	position: absolute;
	top: 6px;
	right: 10px;
	background: none;
	border: none;
	color: #ff0000;
	font-size: 18px;
	cursor: pointer;
	transition: color 0.2s;
}
#janio-close-btn:hover {
	color: #000;
}
.typing-dots {
	display: flex;
	gap: 4px;
	justify-content: flex-start;
}
.typing-dots span {
	width: 6px;
	height: 6px;
	background: #2563eb;
	border-radius: 50%;
	animation: blink 1.4s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink {
	0%, 80%, 100% { opacity: 0.3; }
	40% { opacity: 1; }
}
#janio-final-message.hidden {
	display: none;
}
#janio-final-message {
	margin: 0;
	color: #333;
}