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

/* 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: "";
}
