.dh-0e3233a5-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: 100%;
	max-width: 380px;
	position: relative;
	z-index: 9999;
	font-family: inherit;
}

.dh-0e3233a5-floating {
	position: fixed;
	bottom: 20px;
	right: 20px;
	max-width: 350px;
}

.dh-0e3233a5-chat-window {
	display: none;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 5px 25px rgba(0,0,0,0.15);
	margin-bottom: 20px;
	width: 100%;
	overflow: hidden;
	border: 1px solid #eaeaea;
	flex-direction: column;
}

.dh-0e3233a5-wrapper.chat-open .dh-0e3233a5-chat-window {
	display: flex;
}

.dh-0e3233a5-chat-header {
	background: #f8f9fa;
	padding: 12px 15px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #eaeaea;
}

.dh-0e3233a5-header-img {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 10px;
}

.dh-0e3233a5-chat-header span {
	font-weight: 600;
	color: #333;
	flex-grow: 1;
}

.dh-0e3233a5-close {
	background: none;
	border: none;
	color: #999;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	margin-left: 10px;
}

.dh-0e3233a5-close:hover {
	color: #333;
}

.dh-0e3233a5-chat-body {
	display: flex;
	flex-direction: column;
	max-height: 400px;
}

.dh-0e3233a5-chat-messages {
	padding: 15px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex-grow: 1;
}

.dh-0e3233a5-msg {
	display: flex;
	max-width: 85%;
}

.dh-0e3233a5-msg-assistant {
	align-self: flex-start;
}

.dh-0e3233a5-msg-user {
	align-self: flex-end;
}

.dh-0e3233a5-msg-content {
	padding: 10px 14px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.4;
	color: #333;
}

.dh-0e3233a5-msg-assistant .dh-0e3233a5-msg-content {
	background: #f1f0f0;
	border-bottom-left-radius: 2px;
}

.dh-0e3233a5-msg-user .dh-0e3233a5-msg-content {
	background: #e3f2fd;
	border-bottom-right-radius: 2px;
}

.dh-0e3233a5-msg-content a:not(.dh-0e3233a5-link-btn) {
	color: #0073aa;
	text-decoration: underline;
}

.dh-0e3233a5-link-buttons-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.dh-0e3233a5-link-btn {
	display: inline-block;
	padding: 6px 12px;
	background: #0073aa;
	color: white !important;
	text-decoration: none !important;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
}

.dh-0e3233a5-link-btn:hover {
	opacity: 0.9;
}

.dh-0e3233a5-options {
	padding: 15px;
	background: #fdfdfd;
	border-top: 1px solid #eaeaea;
}

.dh-0e3233a5-options-title {
	font-size: 12px;
	color: #777;
	margin-bottom: 8px;
	font-weight: 600;
	text-transform: uppercase;
}

.dh-0e3233a5-buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dh-0e3233a5-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #0073aa;
	color: #ffffff;
	padding: 8px 12px;
	border: none;
	border-radius: 6px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.2s ease;
	cursor: pointer;
	text-align: left;
}

.dh-0e3233a5-btn:hover {
	background: #005177;
	color: #ffffff;
}

.dh-0e3233a5-btn svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
	flex-shrink: 0;
}

.dh-0e3233a5-btn i {
	font-size: 14px;
}

.dh-0e3233a5-image {
	position: relative;
	display: inline-block;
}

.dh-0e3233a5-image img {
	width: 80px;
	height: auto;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
	cursor: pointer;
	transition: transform 0.3s ease;
}

.dh-0e3233a5-image img:hover {
	transform: scale(1.05);
}

.dh-0e3233a5-badge {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #ff4d4d;
	color: white;
	font-size: 12px;
	font-weight: bold;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid white;
}

.dh-0e3233a5-wrapper.chat-open .dh-0e3233a5-badge {
	display: none;
}

.dh-0e3233a5-typing {
	display: flex;
	gap: 4px;
	padding: 4px;
}

.dh-0e3233a5-dot {
	width: 6px;
	height: 6px;
	background: #999;
	border-radius: 50%;
	animation: dh-0e3233a5-bounce 1.4s infinite ease-in-out both;
}

.dh-0e3233a5-dot:nth-child(1) { animation-delay: -0.32s; }
.dh-0e3233a5-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes dh-0e3233a5-bounce {
	0%, 80%, 100% { transform: scale(0); }
	40% { transform: scale(1); }
}