/* mo-chat.css — estilos mínimos de prueba (Sprint 2). No es el diseño final. */
#moriah-chat-root {
	max-width: 480px;
	margin: 0 auto;
	font-family: inherit;
}
.moriah-bubble {
	background: #f0f0f0;
	border-radius: 12px;
	padding: 10px 14px;
	margin: 6px 0;
	display: inline-block;
	max-width: 90%;
}
.moriah-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 8px 0 16px;
}
.moriah-chip {
	border: 1px solid #ccc;
	background: #fff;
	border-radius: 20px;
	padding: 6px 14px;
	cursor: pointer;
}
.moriah-chip:hover {
	background: #eee;
}
.moriah-input {
	width: 100%;
	min-height: 60px;
	margin: 8px 0;
}
.moriah-cta {
	display: inline-block;
	background: #2b7a3f;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 10px 18px;
	text-decoration: none;
	cursor: pointer;
	margin: 4px 4px 4px 0;
}
.moriah-cta-secondary {
	background: #eee;
	color: #333;
}
