/* Thaikadar Boto AI Pilot Widget Styles */
#boto-widget-root {
	position: fixed;
	bottom: 24px;
	z-index: 999999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.boto-pos-right { right: 24px; }
.boto-pos-left { left: 24px; }

#boto-widget-trigger {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	color: #ffffff;
	border: none;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(11, 31, 58, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#boto-widget-trigger:hover {
	transform: scale(1.08);
}

#boto-chat-container {
	position: absolute;
	bottom: 70px;
	width: 360px;
	height: 480px;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 12px 36px rgba(11, 31, 58, 0.2);
	border: 1px solid #e2e8f0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.boto-pos-right #boto-chat-container { right: 0; }
.boto-pos-left #boto-chat-container { left: 0; }

.boto-hidden { display: none !important; }

.boto-header {
	padding: 14px 16px;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.boto-bot-info {
	display: flex;
	align-items: center;
	gap: 10px;
}

.boto-bot-info img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.8);
}

.boto-bot-info strong {
	display: block;
	font-size: 14px;
	color: #ffffff;
}

.boto-bot-info span {
	font-size: 10px;
	opacity: 0.85;
}

#boto-chat-close {
	background: none;
	border: none;
	color: #ffffff;
	font-size: 22px;
	cursor: pointer;
}

#boto-chat-messages {
	flex: 1;
	padding: 16px;
	overflow-y: auto;
	background: #f8fafc;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.boto-msg {
	max-width: 80%;
	padding: 10px 14px;
	border-radius: 16px;
	font-size: 12px;
	line-height: 1.5;
}

.boto-msg-user {
	align-self: flex-end;
	background: #FC6D3F;
	color: #ffffff;
	border-bottom-right-radius: 2px;
}

.boto-msg-bot {
	align-self: flex-start;
	background: #ffffff;
	color: #2E3333;
	border: 1px solid #e2e8f0;
	border-bottom-left-radius: 2px;
}

#boto-lead-form {
	padding: 12px;
	background: #e6f4ea;
	border-top: 1px solid #28A646;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

#boto-lead-form h4 {
	margin: 0;
	font-size: 12px;
	color: #0B1F3A;
	font-weight: 700;
}

#boto-lead-form input {
	padding: 8px 10px;
	border-radius: 8px;
	border: 1px solid #cbd5e1;
	font-size: 11px;
}

#boto-lead-submit {
	padding: 8px;
	border: none;
	border-radius: 8px;
	color: #ffffff;
	font-weight: bold;
	font-size: 11px;
	cursor: pointer;
}

.boto-input-area {
	padding: 12px;
	background: #ffffff;
	border-top: 1px solid #e2e8f0;
	display: flex;
	gap: 8px;
}

#boto-chat-input {
	flex: 1;
	padding: 8px 12px;
	border-radius: 10px;
	border: 1px solid #cbd5e1;
	font-size: 12px;
	outline: none;
}

#boto-chat-send {
	padding: 8px 16px;
	border: none;
	border-radius: 10px;
	color: #ffffff;
	font-weight: bold;
	font-size: 12px;
	cursor: pointer;
}
