/* Elegant Serif Font as requested */
.tooltip-paragraph-df9ca0c6 {
	font-family: "Georgia", "Times New Roman", serif;
	line-height: 1.8;
	font-size: 18px;
}

/* Light yellow background highlight */
.tooltip-highlight-df9ca0c6 {
	background-color: #fcf0ad;
	position: relative;
	cursor: default;
	padding: 0 4px;
	border-radius: 3px;
	display: inline-block;
}

/* Tooltip Thumbnail Wrapper */
.tooltip-image-wrapper-df9ca0c6 {
	position: absolute;
	bottom: 130%;
	left: 50%;
	transform: translateX(-50%) scale(0.6);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Scale up / Pop-up effect */
	pointer-events: none;
	z-index: 99;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
	border-radius: 12px; /* Rounded corners for the frame */
	overflow: hidden;
	width: 140px;
	background: #ffffff;
	padding: 4px;
}

/* Image inside thumbnail */
.tooltip-image-wrapper-df9ca0c6 img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px; /* Inner rounded corners */
	object-fit: cover;
}

/* Hover Behavior: Show Image */
.tooltip-highlight-df9ca0c6:hover .tooltip-image-wrapper-df9ca0c6 {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) scale(1); /* Pop-up scale effect */
}
