.min-eb-chat {
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(240, 253, 244, 0.95));
	border: 1px solid rgba(34, 197, 94, 0.18);
	border-radius: 18px;
	padding: 16px;
}

.min-eb-chat-header {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 10px;
}

.min-eb-chat-body {
	height: 300px;
	overflow-y: auto;
	padding: 10px;
	border-radius: 16px;
	background: rgba(248, 250, 252, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.2);
}

.min-eb-chat-row {
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
	align-items: flex-start;
}

.min-eb-chat-row img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}

.min-eb-chat-row .bubble {
	background: #fff;
	border-radius: 16px;
	padding: 12px 14px;
	box-shadow: 0 10px 20px rgba(12, 83, 33, 0.08);
}

.min-eb-chat-row.is-ai .bubble {
	background: linear-gradient(120deg, #ecfdf3, #f0fdf4);
}

.min-eb-chat-row.is-user {
	flex-direction: row-reverse;
}

.min-eb-chat-form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	margin-top: 12px;
}

.min-eb-chat-form input[type="text"] {
	border-radius: 14px;
	border: 1px solid rgba(148, 163, 184, 0.4);
	padding: 12px;
	background: rgba(255, 255, 255, 0.7);
}

.min-eb-chat-form button {
	border-radius: 14px;
	border: none;
	background: linear-gradient(120deg, var(--min-eb-primary), var(--min-eb-accent));
	color: #fff;
	padding: 0 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	box-shadow: 0 12px 24px rgba(21, 128, 61, 0.25);
	cursor: pointer;
}

.min-eb-chat-form button .icon {
	width: 18px;
	height: 18px;
}
