body {
/*	font-family: Arial, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 90vh;
	background: #f4f4f4;*/
}

.chat-container {
	width: 100%;
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.chat-box {
	height: 400px;
	overflow-y: auto;
	padding: 10px;
	border: 1px solid #ddd;
	margin-bottom: 10px;
}

.chat {
	margin: 5px 0;
	padding: 10px;
	border-radius: 5px;
}

.user {
	background: #d1e7fd;
	text-align: right;
}

.bot {
	background: #f1f1f1;
	text-align: left;
}
input {
	width: 100%;
	padding: 10px;
}

.button-primary {
	padding: 10px;
	background: #007bff;
	color: white;
	border: none;
	cursor: pointer;
}

.button-primary:hover {
	background: #0056b3;
}

.button-upload {
	padding: 10px;
	background: white;
	color: #000;
	border: none;
	cursor: pointer;
	box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.3);
}

.button-upload:hover {
	background: #faf2f2;
}

.clear-btn {
	background: #dc3545;
	color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
	margin-top: 10px;
}

.clear-btn:hover {
	background: #a71d2a;
}

.typing .dots::after {
	content: "";
	display: inline-block;
	width: 1em;
	animation: dots 1.2s steps(3, end) infinite;
	overflow: hidden;
	vertical-align: bottom;
}

@keyframes dots {
	0% {
		content: "";
	}
	33% {
		content: ".";
	}
	66% {
		content: "..";
	}
	100% {
		content: "...";
	}
}

.chat.bot table {
	border-collapse: collapse;
	width: 100%;
	margin-top: 8px;
}

.chat.bot th,
.chat.bot td {
	border: 1px solid #ccc;
	padding: 8px;
	text-align: left;
}

.chat.bot th {
	background-color: #f0f0f0;
}

.responsive-table {
	overflow-x: auto;
	width: 100%;
}

.responsive-table table {
	width: 100%;
	border-collapse: collapse;
}

.responsive-table th,
.responsive-table td {
	padding: 8px;
	border: 1px solid #ddd;
	text-align: left;
}
