



.mlaic-response {
	position: relative;
	padding-top: 24px;
	box-sizing: border-box;
}

.mlaic-response .mlaic-output-card .mlaic-response--copy {
	margin-top: 8px;
	display: flex;
	gap: 8px;
	align-items: center;
	cursor: pointer;
}

.mlaic-response--content {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
	gap: 1.5rem;
}

.mlaic-output-card {
	padding: 1.5rem;
	border-radius: 8px;
	background-color: white;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: start;
}

.mlaic-output-card .mlaic-response--copy {
	margin-top: 1rem;
}

.mlaic_tooltip_wrapper {
	position: relative;
}

.mlaic_tooltip_wrapper:hover .mlaic_tooltip {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.mlaic_tooltip {
	position: absolute;
	width: max-content;
	max-width: 200px;
	left: 50%;
	bottom: calc(100% + 0.3rem);
	transform: translateX(-50%) translateY(10%);
	background-color: rgb(37, 37, 37);
	color: white;
	padding: 0.6rem;
	pointer-events: none;
	opacity: 0;
	transition: all 0.1s ease-in-out;
	z-index: 1;
}

.mlaic-output-card--actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.mlaic_message {
	font-size: 0.75em;
}

.mlaic_like, .mlaic_dislike {
	background: none !important;
	background-color: unset !important;
	color: black !important;
	box-shadow: none !important;
	padding: 0.5em !important;
}