#bcw-root, #bcw-root * {
	box-sizing: border-box;
	font-family: Tahoma, "Vazirmatn", -apple-system, sans-serif;
}

#bcw-launcher {
	position: fixed;
	bottom: 20px;
	left: 20px; /* راست‌به‌چپ بودن سایت را در نظر بگیرید و در صورت نیاز به right تغییر دهید */
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #0d9488;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0,0,0,0.2);
	z-index: 999999;
	border: none;
	font-size: 26px;
}

#bcw-panel {
	position: fixed;
	bottom: 90px;
	left: 20px;
	width: 340px;
	max-width: calc(100vw - 40px);
	height: 460px;
	max-height: calc(100vh - 140px);
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.25);
	display: none;
	flex-direction: column;
	overflow: hidden;
	z-index: 999999;
	direction: rtl;
}

#bcw-panel.bcw-open {
	display: flex;
}

#bcw-header {
	background: #0d9488;
	color: #fff;
	padding: 14px 16px;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#bcw-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
}

#bcw-messages {
	flex: 1;
	overflow-y: auto;
	padding: 12px;
	background: #f4f6f8;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.bcw-msg {
	max-width: 80%;
	padding: 8px 12px;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.5;
	white-space: pre-wrap;
	word-wrap: break-word;
}

.bcw-msg-out {
	align-self: flex-start;
	background: #0d9488;
	color: #fff;
	border-bottom-left-radius: 2px;
}

.bcw-msg-in {
	align-self: flex-end;
	background: #fff;
	color: #222;
	border: 1px solid #e2e2e2;
	border-bottom-right-radius: 2px;
}

#bcw-input-row {
	display: flex;
	border-top: 1px solid #eee;
	padding: 8px;
	gap: 8px;
}

#bcw-input {
	flex: 1;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 8px 10px;
	font-size: 14px;
	resize: none;
	direction: rtl;
}

#bcw-send {
	background: #0d9488;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 0 16px;
	cursor: pointer;
	font-size: 14px;
}

#bcw-send:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* ===== حالت inline (شورت‌کد [bale_chat]) ===== */

.bcw-inline-box {
	position: static;
	width: 100%;
	max-width: 100%;
	height: 100%;
	max-height: none;
	display: flex; /* برخلاف پنل شناور، این باکس همیشه نمایش داده می‌شود */
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.12);
	border: 1px solid #e5e7eb;
}

#bcw-inline-root {
	direction: rtl;
}
