.bmc-chatbot {
	max-width: 760px;
	border: 1px solid #e6e6e6;
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.bmc-chatbot__header {
	padding: 14px 16px;
	background: linear-gradient(135deg, #0ea5e9, #2563eb);
	color: #fff;
}

.bmc-chatbot__title {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.2;
}

.bmc-chatbot__subtitle {
	opacity: 0.9;
	font-size: 13px;
	margin-top: 2px;
}

.bmc-chatbot__messages {
	padding: 14px 16px;
	background: #f8fafc;
	min-height: 380px;
	max-height: 70vh;
	overflow: auto;
}

.bmc-chatbot__bubble {
	max-width: 86%;
	padding: 10px 12px;
	border-radius: 14px;
	margin: 8px 0;
	white-space: pre-wrap;
	word-break: break-word;
	line-height: 1.35;
	font-size: 14px;
}

.bmc-chatbot__bubble--bot {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-top-left-radius: 6px;
}

.bmc-chatbot__bubble--user {
	margin-left: auto;
	background: #0ea5e9;
	color: #fff;
	border-top-right-radius: 6px;
}

.bmc-chatbot__composer {
	display: flex;
	gap: 10px;
	padding: 12px 12px;
	border-top: 1px solid #e5e7eb;
	background: #fff;
}

.bmc-chatbot__input {
	flex: 1;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	padding: 10px 12px;
	font-size: 14px;
	outline: none;
}
.bmc-chatbot__input:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.bmc-chatbot__send {
	border: none;
	border-radius: 10px;
	padding: 10px 14px;
	background: #111827;
	color: #fff;
	cursor: pointer;
	font-weight: 600;
}
.bmc-chatbot__send:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.bmc-chatbot__quick {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0 12px 12px 12px;
	background: #fff;
}

.bmc-chatbot__btn {
	border: 1px solid #d1d5db;
	border-radius: 999px;
	padding: 8px 12px;
	background: #fff;
	cursor: pointer;
	font-size: 13px;
}
.bmc-chatbot__btn--primary {
	border-color: #2563eb;
	color: #2563eb;
}
.bmc-chatbot__btn--danger {
	border-color: #ef4444;
	color: #ef4444;
}

.bmc-chatbot__hint {
	font-size: 12px;
	color: #475569;
	margin-top: 6px;
}

