#chatlog {
	font-family: Arial, sans-serif;
	padding: 10px;
}
#chatlog::after {
	content: "";
	display: table;
	clear: both;
}

.chat-user,
.chat-bot {
	max-width: 90%;
	padding: 10px 15px;
	margin: 10px 0;
	border-radius: 20px;
	display: inline-block;
	clear: both;
	word-wrap: break-word;
	line-height: 1.5;
	font-size: 14px;
}

/* User bubble - right aligned, blue */
.chat-user {
	background-color: #d0eaff;
	padding: 10px;
	margin: 6px 0;
	border-radius: 15px;
	text-align: left;
	max-width: 80%;
	margin-left: auto;
}

.chat-bot {
	background-color: #f2f2f2;
	padding: 10px;
	margin: 6px 0;
	border-radius: 15px;
	text-align: left;
	max-width: 80%;
	margin-right: auto;
}
.chat-link {
	color: blue;
	text-decoration: underline;
}
.chat-link:hover {
	color: red;
}
#chatlog a {
	color: #007BFF; /* Bootstrap-style blue */
	text-decoration: underline;
	transition: color 0.2s ease-in-out;
}

#chatlog a:hover {
	color: #FF0000; /* Red on hover */
}