#llc-chat-wrapper {
	width: 100%;
	max-width: 768px;
	/* max-height: calc(100vh - 320px); */
	margin: 20px auto;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	position: relative;
}

#llc-chat-header {
	background: #F05A1A;
	color: #fff;
	padding: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#llc-chat-header h3 {
	margin: 0;
	font-size: 1.2rem;
	color: #fff;
}

#llc-clear-btn {
	background: transparent;
	/* border: 1px solid rgba(255, 255, 255, 0.3); */
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1.2rem;
	padding: 6px 12px;
	line-height: 1;
}

#llc-clear-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

#llc-chat-history {
	min-height: 350px;
	max-height: 500px;
	overflow-y: auto;
	padding: 20px;
	background: #f9f9f9;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.llc-message {
	display: flex;
	margin-bottom: 5px;
}

.llc-bot {
	justify-content: flex-start;
}

.llc-user {
	justify-content: flex-end;
}

.llc-bubble {
	max-width: 85%;
	padding: 12px 16px;
	border-radius: 18px;
	font-size: 0.95rem;
	line-height: 1.5;
	word-wrap: break-word;
}

.llc-bot .llc-bubble {
	background: #e9e9eb;
	color: #000;
	border-bottom-left-radius: 4px;
}

.llc-user .llc-bubble {
	background: #F05A1A;
	color: #fff;
	border-bottom-right-radius: 4px;
}

/* Markdown Styles inside Bubble */
.llc-bubble p {
	margin: 0 0 10px 0;
}

.llc-bubble p:last-child {
	margin-bottom: 0;
}

.llc-bubble ul,
.llc-bubble ol {
	margin: 5px 0 10px 20px;
	padding: 0;
	list-style-position: outside;
}

.llc-bubble li {
	margin-bottom: 5px;
}

.llc-bubble strong {
	font-weight: 700;
}

.llc-user .llc-bubble a {
	color: #fff;
	text-decoration: underline;
}

/* Input Area */
#llc-chat-input-area {
	padding: 15px;
	background: #fff;
	border-top: 1px solid #eee;
	display: flex;
	gap: 10px;
}

#llc-user-input {
	flex: 1;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	outline: none;
}

#llc-user-input:focus {
	border-color: #F05A1A;
}

#llc-send-btn {
	padding: 0 20px;
	background: #F05A1A;
	color: #fff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;

	svg {
		width: 24px;
		height: 24px;
	}
}

#llc-send-btn:hover {
	background: #d84f10;
}

#llc-send-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}

/* Loading Animation */
#llc-loader {
	text-align: center;
	padding: 10px;
	color: #888;
}

.llc-dot {
	height: 8px;
	width: 8px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	margin: 0 2px;
	animation: llc-bounce 1.4s infinite ease-in-out both;
}

.llc-dot:nth-child(1) {
	animation-delay: -0.32s;
}

.llc-dot:nth-child(2) {
	animation-delay: -0.16s;
}

@keyframes llc-bounce {

	0%,
	80%,
	100% {
		transform: scale(0);
	}

	40% {
		transform: scale(1);
	}
}

/* --- Floating Action Button (FAB) --- */
.llc-fab-container {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	cursor: pointer;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.llc-fab-container:hover {
	transform: scale(1.1);
	background-color: #fff;
}

.llc-fab-icon-svg {
	color: #fff;
	width: 42px;
	height: 42px;
}

.llc-fab-icon-img {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.llc-disclaimer {
	font-size: 0.85rem;
	font-weight: 500;
	color: #666;
	text-align: center;

}