﻿.chat-messages {
	height: 420px;
	overflow-y: auto;
	padding: 12px;
	background: #f7f9fc;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* 🔥 mỗi message là 1 row */
.chat-row {
	display: flex;
	width: 100%;
}

	/* align phải */
	.chat-row.me {
		justify-content: flex-end;
	}

	/* align trái */
	.chat-row.other {
		justify-content: flex-start;
	}

.chat-bubble {
	max-width: 70%;
	padding: 10px 14px;
	border-radius: 16px;
	font-size: 14px;
	box-shadow: 0 1px 2px rgba(0,0,0,.1);
	word-break: break-word;
}

.chat-me {
	background: #0d6efd;
	color: #fff;
	border-bottom-right-radius: 4px;
}

.chat-other {
	background: #f1f3f5;
	color: #333;
	border-bottom-left-radius: 4px;
}

.chat-name {
	font-size: 12px;
	opacity: .7;
	margin-bottom: 2px;
	learn: left;
}

.chat-time {
	font-size: 11px;
	opacity: .6;
	text-align: right;
	margin-top: 4px;
}
#btn-send-chat{
	margin-bottom:0!important;
}
.chat-card {
	margin-top: 20px;
	margin-bottom: 20px;
}