.google-review-container {
  font-family: Arial, sans-serif;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.row {
  display: flex;
  justify-content: space-between;
}

.review-summary h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.review-ratings .rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.rating-label {
  width: 30px;
  font-size: 14px;
  color: #333;
}

.rating-fill {
  height: 10px;
  border-radius: 5px 0 0 5px;
  background-color: gold;
}

.rating-remaining {
  height: 10px;
  border-radius: 0 5px 5px 0;
  background-color: #D3D3D3;
}

.rating-full {
  border-radius: 5px;
}

.overall-rating {
  margin-top: 20px;
  font-size: 16px;
  color: #333;
}

.review-rating {
  display: flex;
  align-items: center;
}

.star {
  font-size: 18px;
  color: #D3D3D3;

}
.star.full {
  color: #ffb400;
}
.review-count {
  font-size: 14px;
  color: #888;
  margin-top: 5px;
}

.write-review {
  margin-top: 20px;
}

.write-review-btn {
  background-color: #4285f4;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}

.write-review-btn:hover {
  background-color: #357ae8;
}
.rating-score{
  display: block;
  font-size: 56px;
  line-height: 44px;
  margin-bottom: 15px;
}

.google-review {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: #fff;
  max-width: 600px;
  margin: auto;
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.user-info {
  flex-grow: 1;
  margin-left: 10px;
}

.user-name {
  font-weight: bold;
  font-size: 16px;
}

.user-status {
  font-size: 14px;
  color: #888;
}

.review-options .options-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.review-rating svg {
  margin-right: 2px;
}

.rating-text {
  font-size: 14px;
  margin-left: 5px;
  font-weight: bold;
}

.review-date {
  font-size: 12px;
  color: #888;
  margin-left: 10px;
}

.review-text {
  margin-top: 10px;
}


/* google reviews bottom */
.bottom-reviews{
  margin-top: 40px;
}
.read-more {
  font-size: 14px;
  color: #0073e6;
  cursor: pointer;
}

.review-actions {
  margin-top: 15px;
}

.report-review {
  font-size: 14px;
  color: #d9534f;
  text-decoration: none;
}

.report-review:hover {
  text-decoration: underline;
}
.reviews-tag{
  margin-bottom: 20px;
}


.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 10px;
  padding: 10px;
}
.carousel img {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 125px;
  height: 125px;
  object-fit: cover;
  border-radius: 8px;
}
.carousel-container {
  position: relative;
  max-width: 600px;
  margin: auto;
}