﻿/* Nút bật Chat GPT (đã inline, không cần thêm gì) */
/* Popup Chat */
.chatPopup {
	position: fixed;
	bottom: 80px;
	right: 20px;
	width: 90vw;
	max-width: 390px;
	height: calc(100vh - 80px);
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
	font-family: 'Segoe UI', sans-serif;
	display: none;
	flex-direction: column;
	z-index: 99999;
	overflow: hidden;
}
	/* Khi mở popup */
	.chatPopup.show-chat-popup {
		display: flex;
	}

.chatMessages {
	padding-left: 16px;
	padding-right: 16px;
	padding-top: 12px;
	padding-bottom: 12px;
	overflow-y: auto;
	flex: 1;
	font-size: 14px;
	line-height: 1.4;
	display: flex;
	flex-direction: column;
	gap: 12px;
	scroll-behavior: smooth;
	word-break: break-word;
	box-sizing: border-box;
}

/* Responsive cho mobile */
@media screen and (max-width: 768px) {
	.chatPopup {
		left: 10px;
		right: 10px;
		width: calc(100vw - 20px);
		max-width: 100vw;
		height: calc(100vh - 205px) !important;
		/*overflow-y: auto;*/ /* Nên thêm để nội dung bên trong có thể cuộn */
		x
	}

	.chatMessages {
		flex-grow: 1;
		padding-top: 12px;
		padding-bottom: 56px;
	}
}