/* Typing indicator */
.mchat-typing {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
	margin-left: 10px;
	color: #656d76;
	font-size: 12px;
	opacity: 0.9;
}

.mchat-typing.hidden {
	display: none;
}

.mchat-typing-dots {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.mchat-typing-dots span {
	width: 6px;
	height: 6px;
	background: #9aa2a9;
	border-radius: 50%;
	display: inline-block;
	animation: mchat-typing-bounce 1.2s infinite ease-in-out;
}

.mchat-typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.mchat-typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes mchat-typing-bounce {
	0% { transform: translateY(0); opacity: 0.4; }
	30% { transform: translateY(-3px); opacity: 1; }
	60% { transform: translateY(0); opacity: 0.6; }
	100% { transform: translateY(0); opacity: 0.4; }
}