/* Star rating container */
.acf-field-select .star-rating-container {
  display: flex;
  align-items: center;
  margin-top: 10px; /* Adjust spacing as needed */
}

/* Styling for the star images */
.acf-field-select .star {
  width: 30px; /* Set the width of the stars */
  height: 30px; /* Set the height of the stars */
  background-image: url("../img/ios-star-outline.svg"); /* Empty star image */
  background-size: cover;
  cursor: pointer; /* Change cursor to pointer */
  margin-right: 5px; /* Space between stars */
}

.acf-field-select .star.filled {
  background-image: url("../img/ios-star.svg"); /* Filled star image */
}
.acf-field.acf-field-text[data-name="rater_rating_types"],
.acf-field.acf-field-text[data-name="_cosmetic_ratings"] {
  display: none;
}
