.lcw-chat-container-ffa9f432 {
	--lcw-primary: #3b82f6;
	--lcw-primary-hover: #2563eb;
	--lcw-bg: #ffffff;
	--lcw-text: #1f2937;
	--lcw-text-muted: #6b7280;
	--lcw-border: #e5e7eb;
	--lcw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 99999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body.admin-bar .lcw-chat-container-ffa9f432 {
	/* Avoid overlaps if moved to top, but bottom right is generally safe. Keeping bottom: 24px */
}

.lcw-chat-toggle-ffa9f432 {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--lcw-primary);
	color: #ffffff;
	border: none;
	cursor: pointer;
	box-shadow: var(--lcw-shadow);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.lcw-chat-toggle-ffa9f432:hover {
	background-color: var(--lcw-primary-hover);
	transform: scale(1.05);
}

.lcw-chat-toggle-ffa9f432 svg {
	width: 24px;
	height: 24px;
}

.lcw-hidden-ffa9f432 {
	display: none !important;
}

.lcw-chat-window-ffa9f432 {
	position: absolute;
	bottom: 72px;
	right: 0;
	width: 320px;
	height: 440px;
	background-color: var(--lcw-bg);
	border-radius: 12px;
	box-shadow: var(--lcw-shadow);
	display: flex;
	flex-direction: column;
	border: 1px solid var(--lcw-border);
	overflow: hidden;
	animation: lcw-fade-in-ffa9f432 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lcw-fade-in-ffa9f432 {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.lcw-chat-header-ffa9f432 {
	background-color: var(--lcw-primary);
	color: #ffffff;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lcw-chat-header-info-ffa9f432 {
	display: flex;
	align-items: center;
	gap: 12px;
}

.lcw-chat-avatar-ffa9f432 {
	font-size: 24px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lcw-chat-title-ffa9f432 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
}

.lcw-chat-status-ffa9f432 {
	font-size: 12px;
	display: flex;
	align-items: center;
	gap: 4px;
	opacity: 0.9;
}

.lcw-status-dot-ffa9f432 {
	width: 6px;
	height: 6px;
	background-color: #10b981;
	border-radius: 50%;
	display: inline-block;
}

.lcw-translate-bar-ffa9f432 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.15);
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 12px;
}

.lcw-translate-bar-ffa9f432 label {
	font-weight: 500;
}

.lcw-lang-select-ffa9f432 {
	background: var(--lcw-bg);
	color: var(--lcw-text);
	border: none;
	border-radius: 4px;
	padding: 2px 6px;
	font-size: 11px;
	outline: none;
	cursor: pointer;
}

.lcw-chat-messages-ffa9f432 {
	flex: 1;
	padding: 16px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
	background-color: #f9fafb;
}

.lcw-message-ffa9f432 {
	display: flex;
	flex-direction: column;
	max-width: 85%;
}

.lcw-message-received-ffa9f432 {
	align-self: flex-start;
}

.lcw-message-sent-ffa9f432 {
	align-self: flex-end;
}

.lcw-message-bubble-ffa9f432 {
	padding: 10px 14px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.4;
}

.lcw-translation-label-ffa9f432 {
	font-size: 10px;
	opacity: 0.7;
	margin-top: 4px;
	text-align: right;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	padding-top: 2px;
}

.lcw-message-sent-ffa9f432 .lcw-translation-label-ffa9f432 {
	border-top-color: rgba(255, 255, 255, 0.15);
}

.lcw-message-received-ffa9f432 .lcw-message-bubble-ffa9f432 {
	background-color: #f3f4f6;
	color: var(--lcw-text);
	border-top-left-radius: 2px;
}

.lcw-message-sent-ffa9f432 .lcw-message-bubble-ffa9f432 {
	background-color: var(--lcw-primary);
	color: #ffffff;
	border-top-right-radius: 2px;
}

.lcw-chat-input-area-ffa9f432 {
	display: flex;
	padding: 12px;
	border-top: 1px solid var(--lcw-border);
	background-color: var(--lcw-bg);
}

.lcw-chat-input-field-ffa9f432 {
	flex: 1;
	border: 1px solid var(--lcw-border);
	border-radius: 20px;
	padding: 8px 16px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s;
}

.lcw-chat-input-field-ffa9f432:focus {
	border-color: var(--lcw-primary);
}

.lcw-chat-send-btn-ffa9f432 {
	background: none;
	border: none;
	color: var(--lcw-primary);
	cursor: pointer;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 8px;
	transition: color 0.2s, transform 0.1s;
}

.lcw-chat-send-btn-ffa9f432:hover {
	color: var(--lcw-primary-hover);
	transform: scale(1.1);
}

.lcw-chat-send-btn-ffa9f432 svg {
	width: 20px;
	height: 20px;
}
