[x-component="XSimplyGeeksTestimonials"] {
	text-align: center;
	padding-top: 30px;
}

[x-component="XSimplyGeeksTestimonials"] .overall-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

[x-component="XSimplyGeeksTestimonials"] .google-review-slider {
	display: flex;
	align-items: center;
	overflow: hidden;
	/* Hide overflowing reviews */
	width: 100%;
	/* Adjust as needed */
	max-width: 800px;
	/* Example max width */
	margin: 20px auto;
	border: 1px solid #e0e0e0;
	padding: 15px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

[x-component="XSimplyGeeksTestimonials"] .reviews-container {
	display: flex;
	transition: all 0.5s ease-in-out;
	/* For smooth sliding */
	flex-shrink: 1;
	flex-grow: 1;
}

[x-component="XSimplyGeeksTestimonials"] .review-item {
	min-width: 100%;
	/* Each review takes full width of container */
	box-sizing: border-box;
	/* Include padding/border in width */
	padding: 20px 0 20px;
	text-align: center;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

[x-component="XSimplyGeeksTestimonials"] .review-item.active {
	opacity: 1;
}

[x-component="XSimplyGeeksTestimonials"] .review-item:not(.active) {
	width: 0;
}

[x-component="XSimplyGeeksTestimonials"] .review-item h3 {
	margin-bottom: 10px;
	color: #333;
}

[x-component="XSimplyGeeksTestimonials"] .review-item .stars {
	color: #ffc107;
	/* Star color */
	font-size: 1.2em;
	margin-bottom: 15px;
}

[x-component="XSimplyGeeksTestimonials"] .review-item p {
	line-height: 1.6;
	color: #555;
}

[x-component="XSimplyGeeksTestimonials"] .slider-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	z-index: 10;
}

[x-component="XSimplyGeeksTestimonials"] .slider-controls button {
	background-color: #007bff;
	color: white;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
	border-radius: 5px;
	font-size: 1.2em;
	transition: background-color 0.3s ease;
}

[x-component="XSimplyGeeksTestimonials"] .slider-controls button:hover {
	background-color: #0056b3;
}

[x-component="XSimplyGeeksTestimonials"] .source img {
	width: 36px;
}