#ai-summary-wrapper {
	padding: 1rem 1.25rem;
	margin-bottom: 1rem;
	background-color: #e8f4fc;
}

#ai-summary-wrapper h2 {
	font-weight: bold;
	margin-top: 0;
}

#ai-summary {
	line-height: 1.5;
	min-height: 3em; /* keeps space reserved before text appears */
	white-space: pre-wrap; /* keeps line breaks/newlines */
}

/* Optional "typing cursor" */
#ai-summary::after {
	content: "▌";
	display: inline-block;
	margin-left: 2px;
	animation: blink 1s steps(1) infinite;
}

@keyframes blink {
	0%,
	50% {
		opacity: 1;
	}
	51%,
	100% {
		opacity: 0;
	}
}

/* When done typing, hide the cursor */
#ai-summary.done::after {
	content: "";
}
