/* ===== Chat Data List (chat-data-list.php) ===== */
/* Markdown 이미지 스타일 */
.answer-content img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 8px auto;
}

/* 코드 블록 가독성 */
.answer-content pre code {
	white-space: pre-wrap;
	word-break: break-word;
}

/* 줄 자르기 시 깔끔하게 */
.answer-content {
	overflow: visible;
}

/* 이미지 토글 스타일 */
.sidetalk-image-wrapper {
	display: block;
	text-align: inherit;
	margin: 8px 0;
}

.sidetalk-image-toggle {
	cursor: pointer;
	display: inline-block;
	padding: 6px 10px;
	border-radius: var(--st-radius-xs);
	background: var(--st-primary);
	color: var(--st-text-inverse);
	border: none;
	font-size: var(--st-font-size-sm);
	margin-bottom: 6px;
}

.sidetalk-image-content {
	margin-top: 8px;
}

.sidetalk-image-content img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	max-height: 360px;
	object-fit: contain;
	border-radius: 6px;
}

@media (max-width: 768px) {
	.sidetalk-image-content img {
		max-height: 240px;
	}
}
