.dac-launcher {
	position: fixed;
	bottom: 20px;
	left: 20px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #0f6e56;
	color: #fff;
	border: none;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	z-index: 999998;
}

.dac-panel {
	position: fixed;
	bottom: 90px;
	left: 20px;
	width: 340px;
	max-width: calc(100vw - 40px);
	height: 480px;
	max-height: calc(100vh - 120px);
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	z-index: 999999;
	direction: rtl;
	font-family: Tahoma, Arial, sans-serif;
}

.dac-header {
	background: #0f6e56;
	color: #fff;
	padding: 12px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 15px;
}

.dac-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	line-height: 1;
}

.dac-body {
	flex: 1;
	overflow-y: auto;
	padding: 12px;
}

.dac-messages {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dac-msg {
	max-width: 85%;
	padding: 8px 12px;
	border-radius: 10px;
	font-size: 13px;
	line-height: 1.6;
	white-space: pre-wrap;
}

.dac-msg-user {
	align-self: flex-start;
	background: #e6f1fb;
	color: #042c53;
}

.dac-msg-assistant {
	align-self: flex-end;
	background: #f1efe8;
	color: #2c2c2a;
}

.dac-typing {
	opacity: 0.6;
	font-style: italic;
}

.dac-cta-btn {
	align-self: center;
	background: #0f6e56;
	color: #fff;
	text-decoration: none;
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 13px;
	margin-top: 4px;
	text-align: center;
}

.dac-lead-form,
.dac-chat-form {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 12px;
	border-top: 1px solid #e0e0e0;
}

.dac-chat-form {
	flex-direction: row;
}

.dac-lead-form input,
.dac-chat-form input {
	flex: 1;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 13px;
	font-family: inherit;
}

.dac-lead-form button,
.dac-chat-form button {
	background: #0f6e56;
	color: #fff;
	border: none;
	padding: 8px 14px;
	border-radius: 6px;
	font-size: 13px;
	cursor: pointer;
}

.dac-intro {
	font-size: 13px;
	margin: 0 0 4px;
	color: #444;
}

.dac-error {
	color: #a32d2d;
	font-size: 12px;
	margin: 0;
}
