.ai-bot-container-5db6f1b7 {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99999;
	font-family: sans-serif;
}
.ai-bot-bubble-5db6f1b7 {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #000;
	color: #fff;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	transition: transform 0.2s;
}
.ai-bot-bubble-5db6f1b7:hover {
	transform: scale(1.05);
}
.ai-bot-window-5db6f1b7 {
	width: 300px;
	height: 400px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	margin-bottom: 15px;
}
.ai-bot-header-5db6f1b7 {
	background: #000;
	color: #fff;
	padding: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.ai-bot-header-5db6f1b7 h4 {
	margin: 0;
	font-size: 16px;
}
.ai-bot-close-5db6f1b7 {
	background: none;
	border: none;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
}
.ai-bot-messages-5db6f1b7 {
	flex: 1;
	padding: 15px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: #f9f9f9;
}
.ai-bot-message-5db6f1b7 {
	padding: 10px;
	border-radius: 8px;
	max-width: 80%;
	font-size: 14px;
	line-height: 1.4;
}
.bot-message {
	background: #e1e1e1;
	align-self: flex-start;
	color: #333;
}
.user-message {
	background: #000;
	color: #fff;
	align-self: flex-end;
}
.ai-bot-input-5db6f1b7 {
	display: flex;
	padding: 10px;
	border-top: 1px solid #ddd;
}
.ai-bot-input-5db6f1b7 input {
	flex: 1;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-right: 10px;
}
.ai-bot-input-5db6f1b7 button {
	background: #000;
	color: #fff;
	border: none;
	padding: 8px 15px;
	border-radius: 4px;
	cursor: pointer;
}