
.testimonial-item {
	text-align: center;
	padding: 30px;
}
.layout-boxed {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	padding: 40px;
}
.layout-image_left .testimonial-row {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
	gap: 20px;
	width: auto;
}
.layout-minimal .testimonial-comment {
	font-style: italic;
	font-size: 16px;
	color: #333;
}
.testimonial-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
}
.guest-testimonials .testimonial-image {
  border-radius: 50%;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}


/* Style the container of the stars */
.testimonial-rating {
	color: #f2b01e;
	margin-bottom: 10px;
  display: inline-block;
  font-size: 18px;  /* Adjust the size of the stars */
}
.testimonial-rating .star-rating {
	display: flex;
}

/* Default unfilled star (empty star) using Dashicons */
.testimonial-rating .star-empty:before {
    content: '\f155'; /* Dashicon Unicode for an empty star */
    font-family: 'dashicons';  /* Specify the Dashicons font */
    color: #ccc; /* Gray color for empty stars */
}

/* Filled star (used when the rating is > 0) using Dashicons */
.testimonial-rating .star-full:before {
    content: '\f155'; /* Dashicon Unicode for a filled star */
    font-family: 'dashicons';  /* Specify the Dashicons font */
    color: var( --e-global-color-primary);
}

/* Optionally add hover effect for interactive ratings */
.testimonial-rating .star:hover {
    color: #ffcc00; /* Lighter gold when hovered */
    cursor: pointer; /* Make cursor pointer to indicate it's interactive */
}