.fc-873703cc-container {
	position: fixed;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.fc-873703cc-trigger {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--fc-873703cc-bubble);
	color: var(--fc-873703cc-text);
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.2s ease;
}

.fc-873703cc-trigger:hover {
	transform: scale(1.05);
}

.fc-873703cc-window {
	width: 350px;
	height: 500px;
	max-height: 80vh;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 5px 25px rgba(0,0,0,0.2);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	margin-bottom: 20px;
}

.fc-873703cc-header {
	background-color: var(--fc-873703cc-header);
	color: var(--fc-873703cc-text);
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 16px;
}

.fc-873703cc-close {
	background: none;
	border: none;
	color: var(--fc-873703cc-text);
	font-size: 24px;
	cursor: pointer;
	line-height: 1;
	opacity: 0.8;
}

.fc-873703cc-close:hover {
	opacity: 1;
}

.fc-873703cc-body {
	flex: 1;
	padding: 20px;
	overflow-y: auto;
	background: #f8f9fa;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.fc-873703cc-message {
	padding: 10px 15px;
	border-radius: 15px;
	font-size: 14px;
	line-height: 1.4;
	max-width: 85%;
	word-wrap: break-word;
}

.fc-873703cc-msg-bot {
	background: #e9ecef;
	color: #212529;
	align-self: flex-start;
	border-bottom-left-radius: 5px;
}

.fc-873703cc-msg-user {
	background: var(--fc-873703cc-bubble);
	color: var(--fc-873703cc-text);
	align-self: flex-end;
	border-bottom-right-radius: 5px;
}

.fc-873703cc-faqs {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 10px;
}

.fc-873703cc-faq-btn {
	background: #ffffff;
	border: 1px solid var(--fc-873703cc-bubble);
	color: var(--fc-873703cc-bubble);
	padding: 8px 12px;
	border-radius: 20px;
	font-size: 13px;
	cursor: pointer;
	text-align: left;
	transition: all 0.2s;
}

.fc-873703cc-faq-btn:hover {
	background: var(--fc-873703cc-bubble);
	color: var(--fc-873703cc-text);
}

.fc-873703cc-typing {
	display: flex;
	gap: 4px;
	align-items: center;
	background: #e9ecef;
	padding: 12px 15px;
	border-radius: 15px;
	border-bottom-left-radius: 5px;
	align-self: flex-start;
	width: fit-content;
}

.fc-873703cc-dot {
	width: 6px;
	height: 6px;
	background: #6c757d;
	border-radius: 50%;
	animation: fc-873703cc-bounce 1.4s infinite ease-in-out both;
}

.fc-873703cc-dot:nth-child(1) { animation-delay: -0.32s; }
.fc-873703cc-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes fc-873703cc-bounce {
	0%, 80%, 100% { transform: scale(0); }
	40% { transform: scale(1); }
}

.fc-873703cc-footer {
	padding: 15px;
	background: #ffffff;
	border-top: 1px solid #dee2e6;
	font-size: 12px;
	text-align: center;
	color: #6c757d;
}

@media (max-width: 480px) {
	.fc-873703cc-window {
		width: calc(100vw - 40px);
		height: calc(100vh - 120px);
	}
}