﻿/* Định dạng nút mở chat */
#chat-icon {
	position: fixed;
	bottom: 6px;
	right: 8px;
	background: #007bff;
	color: white;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Hộp chat */
#chat-container {
	position: fixed;
	bottom: 0px;
	right: 0px;
	width: 350px;
	background: white;
	border: 1px solid #ccc;
	border-radius: 10px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
	display: none; /* Ẩn mặc định */
	flex-direction: column;
}

/* Nút đóng chat */
#close-chat {
	position: absolute;
	right: 10px;
	top: 5px;
	cursor: pointer;
	font-size: 18px;
}


/* Tiêu đề chat */
#chat-header {
	background: #007bff;
	color: white;
	padding: 10px;
	text-align: left;
	font-size: 16px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	cursor: pointer;
}

/* Nội dung chat */
#chatbox {
	height: 300px;
	padding: 10px;
	overflow-y: auto;
	background: #f9f9f9;
}

/* Input chat */
#chat-footer {
	display: flex;
	border-top: 1px solid #ddd;
	padding: 5px;
	background: white;
}

#inputBox {
	flex-grow: 1;
	padding: 5px;
	border: none;
	border-radius: 5px;
	outline: none;
}

#sendBtn {
	background: #007bff;
	color: white;
	border: none;
	padding: 5px 10px;
	cursor: pointer;
	border-radius: 5px;
}
#uploadBtn { 
	color: white;
	border: none;
	padding: 5px 10px;
	cursor: pointer;
	border-radius: 5px;
}
/* Tin nhắn */
.message {
	padding: 8px;
	margin: 5px 0;
	border-radius: 5px;
}

.user {
	background: #d1e7dd;
	text-align: right;
}

.bot {
	background: #f8d7da;
	text-align: left;
}
