/*  star ratings css */
.stars {
  display: inline-block;
  color: #FFD700;
  font-size: 1.2em;
}
.rating-breakdown {
  margin-top: 20px;
}
.rating-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.rating-label {
  font-weight: bold;
}

.ratingsmd-questionratings {
  width: 100%;
  max-width: 600px;
}

.ratingsmd-qr-entry {
  display: flex;
  width: 100%;
  border-top: 1px solid #eee;
  padding: 10px 0px;
}

.ratingsmd-qr-label {
  flex: 1 1;
}

.ratingsmd-qr-rating {
  padding: 0 0 0 10px;
}

.ratingsmd-qr-avg {
  margin: 0 10px 0 0;
}

.ratingsmd-qr-entry .ratingsmd-star-list {
  display: inline-block;
}

.ratingsmd-qr-entry-last {
  border-bottom: 1px solid #eee;
}


/* Styling for each comment block */
.comment {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.ratingsmd-avg {
  font-weight: bold;
  font-size: 100%;
}

.ratingsmd-outof {
  font-weight: normal;
  margin: 0px;
  color: #777;
}

.ratingsmd-comment-head {
  margin: 0px 0px 20px 0px;
}

.ratingsmd-comment-head .ratingsmd-rating-cnt {
  margin: 0px 0px 0px 10px;
  color: #777;
}

.ratingsmd-comment-entry {
  max-width: 840px;
  min-width: 200px;
}

.ratingsmd-leftside {
  float: left;
  width: 24%;
  max-width: 160px;
  min-width: 100px;
  text-align: left;
}

.ratingsmd-date {
  display: inline-block;
  margin: 4px 8px;
  font-size: 87%;
}

.ratingsmd-rightside {
  float: left;
  width: 72%;
  padding-left: 3px;
  max-width: 680px;
  min-width: 220px;
}

.ratingsmd-separator {
  height: 16px;
  clear: both;
  margin: 0px 0px 16px 0px;
  border: none;
  border-bottom: 1px solid #eee;
  float: none;
}

.ratings-more {
  text-align: center;
  margin: 20px 0px;
}

.btn_view_more {
  font-size: 1rem;
}

/* Styling for the star ratings */
.comment .stars {
  display: inline-block;
  color: #FFD700; /* Gold color for the stars */
  font-size: 1.2em; /* Adjust font size as needed */
}
