.ai-content-box {
	/* border: 5px solid transparent; /* Transparent border to allow gradient to show */
	border-radius: 8px;
	background-color: #f9f9f9;
	position: relative;
}

/* Create the multi-colored border using a gradient */
.ai-content-box::before {
	content: "";
	position: absolute;
	top: -5px; /* Offset to align with the border */
	left: -5px;
	right: -5px;
	bottom: -5px;
	z-index: -1;
	background: linear-gradient(45deg, red, yellow, blue, green);
	border-radius: 10px; /* Match the border radius of the box */
}
