/*--------------------------------------------------------------
 * andW AI Chat Assistant — ハーフシートUI スタイル
 *
 * モバイルファースト設計。dvh単位でキーボード対応。
 * backdrop-filter ですりガラス効果を実現。
 *------------------------------------------------------------*/

/* CSS カスタムプロパティ */
:root {
	--andw-chat-primary: #4F46E5;
	--andw-chat-primary-hover: #4338CA;
	--andw-chat-primary-light: rgba(79, 70, 229, 0.1);
	--andw-chat-primary-gradient: #7C3AED;
	--andw-chat-bg: #ffffff;
	--andw-chat-bg-secondary: #f8f9fa;
	--andw-chat-text: #1a1a2e;
	--andw-chat-text-secondary: #6b7280;
	--andw-chat-border: #e5e7eb;
	--andw-chat-shadow: 0 -4px 32px rgba(0, 0, 0, 0.12);
	--andw-chat-radius: 20px;
	--andw-chat-radius-sm: 12px;
	--andw-chat-fab-size: 60px;
	--andw-chat-sheet-height: 50dvh;
	--andw-chat-sheet-max: 90dvh;
	--andw-chat-sheet-min: 15dvh;
	--andw-chat-z-index: 99999;
	--andw-chat-transition: cubic-bezier(0.32, 0.72, 0, 1);
}

/* リセット：プラグイン内のスタイルが外部に影響しないようスコープ化 */
.andw-chat-widget,
.andw-chat-widget * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
	-webkit-font-smoothing: antialiased;
}

/*--------------------------------------------------------------
 * FAB ボタン
 *------------------------------------------------------------*/
.andw-chat-fab {
	position: fixed;
	bottom: 20px;
	z-index: var(--andw-chat-z-index);
	width: var(--andw-chat-fab-size);
	height: var(--andw-chat-fab-size);
	border-radius: 50%;
	border: none;
	background: linear-gradient(135deg, var(--andw-chat-primary), var(--andw-chat-primary-gradient));
	color: #fff;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s var(--andw-chat-transition), box-shadow 0.3s ease;
}

.andw-chat-widget[data-position="right"] .andw-chat-fab {
	right: 20px;
}

.andw-chat-widget[data-position="left"] .andw-chat-fab {
	left: 20px;
}

.andw-chat-fab:hover {
	transform: scale(1.08);
	box-shadow: 0 6px 28px rgba(79, 70, 229, 0.5);
}

.andw-chat-fab:active {
	transform: scale(0.95);
}

.andw-chat-fab-icon-close {
	display: none;
}

.andw-chat-widget.andw-chat-open .andw-chat-fab-icon-chat {
	display: none;
}

.andw-chat-widget.andw-chat-open .andw-chat-fab-icon-close {
	display: block;
}

/*--------------------------------------------------------------
 * オーバーレイ（すりガラス）
 *------------------------------------------------------------*/
.andw-chat-overlay {
	position: fixed;
	inset: 0;
	z-index: calc(var(--andw-chat-z-index) - 2);
	background: rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

.andw-chat-widget.andw-chat-open .andw-chat-overlay {
	opacity: 1;
	pointer-events: auto;
}

/*--------------------------------------------------------------
 * ハーフシート
 *------------------------------------------------------------*/
.andw-chat-sheet {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: calc(var(--andw-chat-z-index) - 1);
	height: var(--andw-chat-sheet-height);
	max-height: var(--andw-chat-sheet-max);
	min-height: var(--andw-chat-sheet-min);
	background: var(--andw-chat-bg);
	border-radius: var(--andw-chat-radius) var(--andw-chat-radius) 0 0;
	box-shadow: var(--andw-chat-shadow);
	display: flex;
	flex-direction: column;
	transform: translateY(100%);
	transition: transform 0.4s var(--andw-chat-transition), height 0.3s var(--andw-chat-transition);
	will-change: transform, height;
	overflow: hidden;
	touch-action: none;
}

.andw-chat-widget.andw-chat-open .andw-chat-sheet {
	transform: translateY(0);
}

/* FAB非表示制御（SPで開いている時はFABを隠す） */
.andw-chat-widget.andw-chat-open .andw-chat-fab {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity 0.2s, visibility 0.2s;
}

/* 画像プレビュー（hidden属性の時は完全に隠す） */
.andw-chat-image-preview[hidden] {
	display: none !important;
}

/*--------------------------------------------------------------
 * ヘッダー
 *------------------------------------------------------------*/
.andw-chat-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 4px 16px 12px;
	border-bottom: 1px solid var(--andw-chat-border);
	flex-shrink: 0;
}

.andw-chat-header-info {
	display: flex;
	align-items: center;
	gap: 8px;
}

.andw-chat-header-icon {
	font-size: 22px;
	line-height: 1;
}

.andw-chat-header-logo {
	max-width: 32px;
	max-height: 32px;
	border-radius: 6px;
	object-fit: contain;
}

.andw-chat-header-title {
	font-size: 15px;
	font-weight: 600;
	color: var(--andw-chat-text);
}

.andw-chat-close-btn {
	width: 32px;
	height: 32px;
	background: var(--andw-chat-primary);
	border: none;
	color: #fff;
	cursor: pointer;
	padding: 0;
	border-radius: 50%;
	transition: background 0.2s, transform 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.andw-chat-close-btn:hover {
	background: var(--andw-chat-primary-hover);
	color: #fff;
	transform: scale(1.1);
}

/* ヘッダーアクション（メニュー + 閉じる） */
.andw-chat-header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* メニューボタン（選択肢表示） */
.andw-chat-menu-btn {
	height: 28px;
	background: var(--andw-chat-primary-light);
	border: 1.5px solid rgba(79, 70, 229, 0.2);
	color: var(--andw-chat-primary);
	cursor: pointer;
	padding: 0 10px 0 8px;
	border-radius: 14px;
	transition: background 0.2s, transform 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.andw-chat-menu-btn:hover {
	background: rgba(79, 70, 229, 0.15);
	border-color: var(--andw-chat-primary);
	transform: scale(1.05);
}

.andw-chat-menu-btn-label {
	font-size: 11px;
	font-weight: 600;
	white-space: nowrap;
	line-height: 1;
}

/* メニューオーバーレイ */
.andw-chat-menu-overlay {
	position: absolute;
	inset: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.andw-chat-menu-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
}

.andw-chat-menu-panel {
	position: relative;
	z-index: 1;
	width: calc(100% - 32px);
	max-height: 70%;
	overflow-y: auto;
	background: var(--andw-chat-bg);
	border-radius: var(--andw-chat-radius-sm);
	padding: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	animation: andw-chat-fadeIn 0.2s ease;
}

.andw-chat-menu-buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

/*--------------------------------------------------------------
 * メッセージエリア
 *------------------------------------------------------------*/
.andw-chat-messages {
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	scroll-behavior: smooth;
}

/* ウェルカム画面 */
.andw-chat-welcome {
	text-align: center;
	padding: 20px 0;
}

.andw-chat-welcome-emoji {
	font-size: 48px;
	margin-bottom: 12px;
	display: block;
}

.andw-chat-welcome-text {
	font-size: 15px;
	color: var(--andw-chat-text);
	line-height: 1.6;
	margin-bottom: 20px;
}

/* 名前入力フォーム */
.andw-chat-name-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 340px;
	margin: 0 auto;
}

.andw-chat-name-input {
	width: 100%;
	padding: 12px 16px;
	font-size: 16px;
	border: 2px solid var(--andw-chat-text-secondary);
	border-radius: var(--andw-chat-radius-sm);
	outline: none;
	transition: border-color 0.2s;
	background: var(--andw-chat-bg);
	color: var(--andw-chat-text);
}

.andw-chat-name-input:focus {
	border-color: var(--andw-chat-primary);
}

.andw-chat-start-btn {
	width: 100%;
	padding: 12px 24px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(135deg, var(--andw-chat-primary), #7C3AED);
	border: none;
	border-radius: var(--andw-chat-radius-sm);
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
}

.andw-chat-start-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
}

.andw-chat-start-btn:active {
	transform: translateY(0);
}

/* 選択肢ボタン群 */
.andw-chat-buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-top: 8px;
}

.andw-chat-btn-option {
	padding: 12px 8px;
	font-size: 13px;
	font-weight: 500;
	color: var(--andw-chat-primary);
	background: var(--andw-chat-primary-light);
	border: 1.5px solid rgba(79, 70, 229, 0.2);
	border-radius: var(--andw-chat-radius-sm);
	cursor: pointer;
	transition: all 0.2s ease;
	text-align: center;
	line-height: 1.3;
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.andw-chat-btn-option:hover {
	background: rgba(79, 70, 229, 0.15);
	border-color: var(--andw-chat-primary);
	transform: translateY(-1px);
}

.andw-chat-btn-option:active {
	transform: translateY(0);
}

/* LINE相談ボタン */
.andw-chat-btn-line {
	color: #fff;
	background: #06c755;
	border-color: #06c755;
	gap: 6px;
	text-decoration: none;
}

.andw-chat-btn-line:hover {
	background: #05b34c;
	border-color: #05b34c;
	color: #fff;
}

.andw-chat-btn-line svg {
	flex-shrink: 0;
}

/* 問い合わせフォームボタン */
.andw-chat-btn-contact {
	color: var(--andw-chat-primary);
	background: var(--andw-chat-primary-light);
	border-color: rgba(79, 70, 229, 0.25);
	grid-column: 1 / -1;
}

.andw-chat-btn-contact:hover {
	background: rgba(79, 70, 229, 0.15);
	border-color: var(--andw-chat-primary);
}

/* チャットを閉じるボタン */
.andw-chat-btn-close {
	color: var(--andw-chat-text-secondary);
	background: var(--andw-chat-bg-secondary);
	border-color: var(--andw-chat-border);
}

.andw-chat-btn-close:hover {
	background: var(--andw-chat-border);
	border-color: var(--andw-chat-text-secondary);
	color: var(--andw-chat-text);
}

/* メッセージバブル */
.andw-chat-message {
	max-width: 85%;
	padding: 10px 14px;
	font-size: 14px;
	line-height: 1.6;
	border-radius: var(--andw-chat-radius-sm);
	animation: andw-chat-fadeIn 0.3s ease;
	word-break: break-word;
}

.andw-chat-message-user {
	align-self: flex-end;
	background: linear-gradient(135deg, var(--andw-chat-primary), #7C3AED);
	color: #fff;
	border-bottom-right-radius: 4px;
}

.andw-chat-message-assistant {
	align-self: flex-start;
	background: var(--andw-chat-bg-secondary);
	color: var(--andw-chat-text);
	border-bottom-left-radius: 4px;
}

.andw-chat-message-system {
	align-self: center;
	background: transparent;
	color: var(--andw-chat-text-secondary);
	font-size: 13px;
	text-align: center;
	max-width: 100%;
}

/* タイピングインジケーター */
.andw-chat-typing {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 12px 16px;
	background: var(--andw-chat-bg-secondary);
	border-radius: var(--andw-chat-radius-sm);
	align-self: flex-start;
	border-bottom-left-radius: 4px;
}

.andw-chat-typing-dot {
	width: 7px;
	height: 7px;
	background: var(--andw-chat-text-secondary);
	border-radius: 50%;
	animation: andw-chat-bounce 1.4s infinite ease-in-out both;
}

.andw-chat-typing-dot:nth-child(1) {
	animation-delay: -0.32s;
}

.andw-chat-typing-dot:nth-child(2) {
	animation-delay: -0.16s;
}

/*--------------------------------------------------------------
 * CVフォーム
 *------------------------------------------------------------*/
.andw-chat-cv-form {
	background: var(--andw-chat-bg-secondary);
	border-radius: var(--andw-chat-radius-sm);
	padding: 16px;
	margin-top: 8px;
	animation: andw-chat-fadeIn 0.3s ease;
}

.andw-chat-cv-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--andw-chat-text);
	margin-bottom: 12px;
	text-align: center;
}

.andw-chat-cv-field {
	margin-bottom: 8px;
}

.andw-chat-cv-input {
	width: 100%;
	padding: 10px 12px;
	font-size: 16px;
	border: 1.5px solid var(--andw-chat-border);
	border-radius: 8px;
	outline: none;
	transition: border-color 0.2s;
	background: var(--andw-chat-bg);
	color: var(--andw-chat-text);
}

.andw-chat-cv-input:focus {
	border-color: var(--andw-chat-primary);
}

.andw-chat-cv-actions {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}

.andw-chat-cv-submit {
	flex: 1;
	padding: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(135deg, var(--andw-chat-primary), #7C3AED);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: transform 0.2s;
}

.andw-chat-cv-submit:hover {
	transform: translateY(-1px);
}

.andw-chat-cv-skip {
	padding: 10px 16px;
	font-size: 13px;
	color: var(--andw-chat-text-secondary);
	background: none;
	border: 1.5px solid var(--andw-chat-border);
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s;
}

.andw-chat-cv-skip:hover {
	background: var(--andw-chat-bg-secondary);
}

/* CVフォーム内LINEボタン */
.andw-chat-cv-line-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px;
	margin-top: 8px;
	background: #06c755;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s;
}

.andw-chat-cv-line-link:hover {
	background: #05b34c;
	color: #fff;
}

.andw-chat-cv-line-link svg {
	flex-shrink: 0;
}

/*--------------------------------------------------------------
 * 入力エリア
 *------------------------------------------------------------*/
.andw-chat-input-area {
	padding: 10px 16px;
	padding-bottom: max(10px, env(safe-area-inset-bottom));
	border-top: 1px solid var(--andw-chat-border);
	background: var(--andw-chat-bg);
	flex-shrink: 0;
}

.andw-chat-input-wrapper {
	display: flex;
	align-items: flex-end;
	gap: 4px;
	background: var(--andw-chat-bg-secondary);
	border-radius: var(--andw-chat-radius-sm);
	padding: 4px 4px 4px 8px;
	border: 1.5px solid var(--andw-chat-border);
	transition: border-color 0.2s;
}

.andw-chat-input-wrapper:focus-within {
	border-color: var(--andw-chat-primary);
}

.andw-chat-input {
	flex: 1;
	border: none;
	outline: none;
	font-size: 15px;
	line-height: 1.4;
	background: transparent;
	color: var(--andw-chat-text);
	min-height: 36px;
	max-height: 120px;
	height: 36px;
	padding: 6px 4px;
	resize: none;
	overflow-y: auto;
	font-family: inherit;
	box-sizing: border-box;
}

.andw-chat-input::placeholder {
	color: var(--andw-chat-text-secondary);
}

.andw-chat-send-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: var(--andw-chat-primary);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.2s, transform 0.2s, opacity 0.2s;
	opacity: 0.5;
}

.andw-chat-send-btn:not([disabled]) {
	opacity: 1;
}

.andw-chat-send-btn:not([disabled]):hover {
	background: var(--andw-chat-primary-hover);
	transform: scale(1.05);
}

.andw-chat-send-btn[disabled] {
	cursor: not-allowed;
}

/*--------------------------------------------------------------
 * 画像添付UI
 *------------------------------------------------------------*/

/* 📎ボタン */
.andw-chat-attach-btn {
	background: none;
	border: none;
	color: var(--andw-chat-text-secondary);
	cursor: pointer;
	padding: 0 6px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
	transition: color 0.2s, background 0.2s;
	font-size: 12px;
	white-space: nowrap;
	box-sizing: border-box;
}

/* メニューボタン削除済み */

.andw-chat-attach-label {
	font-size: 12px;
	line-height: 1;
}

.andw-chat-attach-btn:hover {
	color: var(--andw-chat-primary);
	background: var(--andw-chat-primary-light);
}

/* 画像プレビュー */
.andw-chat-image-preview {
	position: relative;
	display: inline-block;
	margin: 0 16px 6px;
}

.andw-chat-image-preview img {
	max-width: 120px;
	max-height: 80px;
	border-radius: 8px;
	object-fit: cover;
	border: 1.5px solid var(--andw-chat-border);
}

.andw-chat-preview-remove {
	position: absolute;
	top: -6px;
	right: -6px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #d63638;
	color: #fff;
	border: none;
	font-size: 11px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	transition: transform 0.15s;
}

/* 親要素がhiddenなら子要素の削除ボタンも確実に隠す */
.andw-chat-image-preview[hidden] .andw-chat-preview-remove {
	display: none !important;
}

.andw-chat-preview-remove:hover {
	transform: scale(1.15);
}

/* メッセージ内の画像サムネイル */
.andw-chat-message-user img.andw-chat-msg-thumb {
	display: block;
	max-width: 160px;
	max-height: 100px;
	border-radius: 6px;
	margin-bottom: 6px;
	object-fit: cover;
}

/* 画像解析中ローディング */
.andw-chat-typing-text {
	font-size: 13px;
	color: var(--andw-chat-text-secondary);
	margin-left: 4px;
}

/* 初期状態（名前入力前）は入力エリアを隠す */
.andw-chat-widget:not(.andw-chat-started) .andw-chat-input-area {
	display: none;
}

/* LINEボタン */
.andw-chat-line-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	margin: 32px 0 6px;
	background: #06c755;
	color: #fff;
	border: none;
	border-radius: var(--andw-chat-radius-sm);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s, transform 0.2s;
}

.andw-chat-line-link:hover {
	background: #05b34c;
	transform: translateY(-1px);
}

.andw-chat-line-link:active {
	transform: translateY(0);
}

.andw-chat-line-link svg {
	flex-shrink: 0;
}

/*--------------------------------------------------------------
 * アニメーション
 *------------------------------------------------------------*/
@keyframes andw-chat-fadeIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes andw-chat-bounce {

	0%,
	80%,
	100% {
		transform: scale(0);
	}

	40% {
		transform: scale(1);
	}
}

/*--------------------------------------------------------------
 * スマホ（768px以下）: フルスクリーン（上部余白あり）
 *------------------------------------------------------------*/
@media (max-width: 768px) {
	.andw-chat-widget.andw-chat-open .andw-chat-sheet {
		top: 40px;
		bottom: 0;
		height: auto;
		max-height: none;
		border-radius: 16px 16px 0 0;
		/* キーボード開閉時に height/padding の transition を無効化 */
		transition: transform 0.4s var(--andw-chat-transition);
	}

	/* スマホではすりガラスなし、薄く暗くするだけ */
	.andw-chat-widget.andw-chat-open .andw-chat-overlay {
		background: rgba(0, 0, 0, 0.05);
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	/* 入力エリアの下余白を最小限に */
	.andw-chat-input-area {
		padding-bottom: 10px;
	}
}

/*--------------------------------------------------------------
 * PC（769px以上）: 右下カード型に変形
 *------------------------------------------------------------*/
@media (min-width: 769px) {
	.andw-chat-overlay {
		display: none;
	}

	.andw-chat-sheet {
		width: 400px;
		height: 580px;
		max-height: 80vh;
		min-height: 400px;
		bottom: 90px;
		left: auto;
		border-radius: var(--andw-chat-radius);
		box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
		transform: translateY(20px) scale(0.95);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.35s var(--andw-chat-transition),
			opacity 0.35s ease;
	}

	.andw-chat-widget[data-position="right"] .andw-chat-sheet {
		right: 20px;
	}

	.andw-chat-widget[data-position="left"] .andw-chat-sheet {
		left: 20px;
	}

	.andw-chat-widget.andw-chat-open .andw-chat-sheet {
		transform: translateY(0) scale(1);
		opacity: 1;
		pointer-events: auto;
	}

	/* PCでは添付ラベルを表示 */
	.andw-chat-attach-label {
		display: inline;
	}
}

/*--------------------------------------------------------------
 * 安全マージン（ノッチ端末対応）
 *------------------------------------------------------------*/
@supports (padding-bottom: env(safe-area-inset-bottom)) {
	.andw-chat-input-area {
		padding-bottom: max(10px, env(safe-area-inset-bottom));
	}
}

/*--------------------------------------------------------------
 * Phase 11: 2段階階層選択肢
 *------------------------------------------------------------*/
.andw-chat-buttons-tree {
	width: 100%;
}

.andw-chat-btn-back {
	display: flex;
	align-items: center;
	gap: 4px;
	width: 100%;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 600;
	color: var(--andw-chat-text-secondary);
	background: rgba(0, 0, 0, 0.04);
	border: 1.5px solid var(--andw-chat-border);
	border-radius: var(--andw-chat-radius-sm);
	cursor: pointer;
	transition: all 0.2s ease;
	text-align: left;
	min-height: 40px;
}

.andw-chat-btn-back:hover {
	background: rgba(0, 0, 0, 0.08);
	border-color: var(--andw-chat-primary);
	color: var(--andw-chat-primary);
}

@keyframes andw-chat-fadeIn {
	from {
		opacity: 0;
		transform: translateX(12px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}