#chatbot-widget {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	width: 56px;
	font-family: inherit;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.chatbot-panel {
	display: none;
	position: absolute;
	right: 0;
	bottom: 68px;
	width: 320px;
	max-height: 420px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,.15);
	overflow: hidden;
	flex-direction: column;
}
#chatbot-widget.open .chatbot-panel { display: flex; }
.chatbot-header { background: #00b29c; color: #fff !important; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; }
.chatbot-title { font-weight: 600; font-size: 15px; color: #fff !important; }
.chatbot-close { background: transparent; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 0; line-height: 1; opacity: .9; }
.chatbot-close:hover { opacity: 1; }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 12px; max-height: 260px; min-height: 180px; }
.chatbot-msg { max-width: 85%; padding: 10px 12px; border-radius: 10px; margin-bottom: 8px; font-size: 14px; }
.chatbot-msg.bot { background: #f0f4f5; color: #333; }
.chatbot-msg.user { background: #00b29c; color: #fff; margin-left: auto; }
.chatbot-input-wrap { display: flex; padding: 10px; border-top: 1px solid #eee; gap: 8px; }
.chatbot-input-wrap input { flex: 1; padding: 10px 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; }
.chatbot-input-wrap button { padding: 10px 14px; background: #00b29c; color: #fff; border: none; border-radius: 8px; cursor: pointer; font-weight: 600; }
.chatbot-toggle {
	box-sizing: border-box;
	width: 56px;
	height: 56px;
	padding: 0;
	margin: 0;
	border-radius: 50%;
	background: #00b29c;
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	box-shadow: 0 2px 12px rgba(0,179,156,.4);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.chatbot-toggle:hover { background: #009683; color: #fff; }
.chatbot-toggle i { font-size: 22px; line-height: 1; }
