.ht-slide-container .ht-google-place-review {
  min-height: 220px;
}
.ht-row {
  display: flex;
  justify-content: center;
}



/* Dark mode styles */
[data-theme="dark"] .ht-google-place-review-section {
  background-color: var(--ht-background-primary);
  color: var(--ht-text-primary);
}

[data-theme="dark"] .ht-google-place-review {
  background-color: var(--ht-review-card-bg);
  border-color: var(--ht-border-color);
}

[data-theme="dark"] .ht-google-place-review-name a {
  color: var(--ht-review-name-color);
}

[data-theme="dark"] .ht-google-place-review-summery {
  color: var(--ht-review-text-color);
}

[data-theme="dark"] .ht-google-place-review-date {
  color: var(--ht-review-date-color);
}

[data-theme="dark"] .ht-google-place-widget-title {
  color: var(--ht-text-primary);
}

[data-theme="dark"] .ht-google-place-review-title {
  color: var(--ht-text-primary);
}

[data-theme="dark"] .ht-google-place-review-actions button {
  background-color: var(--ht-button-bg);
  color: var(--ht-button-text);
  border-color: var(--ht-border-color);
}

[data-theme="dark"] .ht-text-toggle-btn {
  color: var(--ht-text-subdued);
}

/* Dark mode hover states */
[data-theme="dark"] .ht-google-place-review:hover {
  background-color: var(--ht-background-secondary);
}

[data-theme="dark"] .ht-google-place-review-actions button:hover {
  background-color: var(--ht-background-secondary);
}



/* Dark mode styles for carousel navigation buttons */
[data-theme="dark"] .ht-slider-arrow .ht-slide-btn {
  background-color: var(--ht-background-secondary);
  border-color: var(--ht-border-color);
}

[data-theme="dark"] .ht-slider-arrow .ht-slide-btn img {
  /* Invert the arrow images to make them visible in dark mode */
  filter: invert(1);
}

[data-theme="dark"] .ht-slider-arrow .ht-slide-btn:hover {
  background-color: var(--ht-review-card-bg);
  border-color: var(--ht-text-primary);
}

[data-theme="dark"] .ht-slider-arrow .ht-slide-btn:hover img {
  /* Adjust the hover state filter for dark mode */
  filter: invert(1) brightness(100%);
}