.unche-chatbot {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 99999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.unche-chatbot .unche-chatbot-toggle {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: none;
	background: #14375e;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.unche-chatbot .unche-chatbot-toggle:hover {
	background: #1c4c7c;
}

.unche-chatbot .unche-chatbot-panel {
	position: absolute;
	right: 0;
	bottom: 68px;
	width: 340px;
	max-width: calc(100vw - 40px);
	height: 460px;
	max-height: calc(100vh - 120px);
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.unche-chatbot .unche-chatbot-panel[hidden] {
	display: none;
}

.unche-chatbot .unche-chatbot-header {
	background: #14375e;
	color: #fff;
	padding: 10px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
}

.unche-chatbot .unche-chatbot-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	line-height: 1;
}

.unche-chatbot .unche-chatbot-messages {
	flex: 1;
	overflow-y: auto;
	padding: 12px;
	background: #f5f6f8;
}

.unche-chatbot .unche-chatbot-message {
	max-width: 85%;
	margin-bottom: 8px;
	padding: 8px 12px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.4;
	word-wrap: break-word;
}

.unche-chatbot .unche-chatbot-message-user {
	margin-left: auto;
	background: #14375e;
	color: #fff;
	border-bottom-right-radius: 2px;
}

.unche-chatbot .unche-chatbot-message-assistant {
	margin-right: auto;
	background: #fff;
	border: 1px solid #ddd;
	border-bottom-left-radius: 2px;
}

.unche-chatbot .unche-chatbot-message-pending {
	opacity: 0.6;
}

.unche-chatbot .unche-chatbot-form {
	display: flex;
	border-top: 1px solid #ddd;
	padding: 8px;
	gap: 6px;
}

.unche-chatbot .unche-chatbot-form input[type="text"]:not(.unche-chatbot-hp) {
	flex: 1;
	border: 1px solid #ccc;
	border-radius: 6px;
	padding: 8px;
	font-size: 14px;
}

.unche-chatbot .unche-chatbot-form button[type="submit"] {
	background: #14375e;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 8px 14px;
	cursor: pointer;
}

.unche-chatbot .unche-chatbot-form button[type="submit"]:hover {
	background: #1c4c7c;
}

.unche-chatbot .unche-chatbot-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
}
