.star-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse; /* Reverse the direction */
  margin: 20px 0px 20px 0px;
}

.star-rating label {
  font-size: 30px;
  cursor: pointer;
}

.star-rating input[type="radio"] {
  display: none;
}

.star-rating label:before {
  content: "\2605"; /* Unicode for the star character */
  color: gray;
}

.star-rating input[type="radio"]:hover ~ label:before,
.star-rating input[type="radio"]:hover + label:before,
.star-rating label:hover ~ label:before,
.star-rating label:hover:before {
  color: gold;
}

.star-rating input[type="radio"]:checked ~ label:before,
.star-rating input[type="radio"]:checked + label:before {
  color: gold;
}

.review_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
  margin-bottom: 30px;
}

.review_table_head {
  background-color: #f0f0f0;
  padding: 10px;
  text-align: left;
  font-weight: bold;
}

.review_table_cell {
  padding: 10px;
  border: 1px solid #ccc;
}

.review_heading_1 {
  font-size: 20px;
  color: #333;
  margin-top: 30px;
}

/* Review Button Style */
.review_link_button {
  margin: 10px 0;
}

.review-button {
  background-color: #3badea;
  color: #fff !important;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  border-width: 0px;
}

.review-button:hover {
  background-color: #0056b3;
}

/* Label Style */
.review-form-label {
  display: block;
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Input Field Style */
.review-input-form {
  width: 100%;
  max-width: 250px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

.review-textarea-form {
  width: 100%;
  max-width: 250px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

/*Bar Chart*/
.review_bar_chart {
  margin: 90px auto 20px auto;
  width: 100%;
  max-width: 1080px;
  height: 200px;
}

.review_page {
  text-align: center;
}

/* Styles for pagination */
.review_pagination {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.review_page_number {
  padding: 10px;
  margin: 0 5px;
  text-decoration: none;
  color: #333;
  border: 1px solid #ccc;
}

.review_page_number_active {
  background-color: #2ea3f2;
  color: #fff;
}

.review_page_number:hover {
  background-color: #2ea3f2;
  color: #fff;
}
