.gcoai-loading {
	display: block;
	background-color: #e0e0e0;
	position: relative;
	text-indent: -9999px;
	overflow: hidden;
	cursor: wait;
}

.gcoai-loading::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(90deg, #e0e0e0 0%, #f0f0f0 50%, #e0e0e0 100%);
	animation: gcoai-skeleton-pulse 1.5s infinite;
}

.gcoai-output {
	max-width: 100%;
}

.gcoai-output ol, .gcoai-output ul {
	list-style: auto;
	max-width: 100%;
}

@keyframes gcoai-skeleton-pulse {
	0% {
		transform: translateX(-100%);
	}
	50% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}
