/* Basic styling for the AI asistnets chat widget */
#ai-asistnets-chat-widget {
	border: 1px solid #ddd;
	padding: 10px;
	max-width: 400px;
	margin: 20px auto;
	background-color: #f9f9f9;
}

#ai-asistnets-chat-history {
	height: 250px;
	overflow-y: auto;
	border: 1px solid #ccc;
	padding: 10px;
	background-color: #fff;
	margin-bottom: 10px;
}

#ai-asistnets-chat-history .user-message,
#ai-asistnets-chat-history .ai-message {
	margin-bottom: 10px;
}

#ai-asistnets-chat-form input[type="text"] {
	width: 70%;
	padding: 5px;
}

#ai-asistnets-chat-form button {
	padding: 5px 10px;
}