/* src/public/css/stars.css */
.star-rating {
  display: inline-block;
  font-size: 1.2rem; /* Adjust size as needed, Font Awesome icons might have different base size */
  color: #ffc107; /* Default star color (Bootstrap warning / or direct) */
  -webkit-print-color-adjust: exact !important;
  print-color-adjust: exact !important;
}

.star-rating i {
  margin-right: 2px; /* Space between stars */
  -webkit-print-color-adjust: exact !important;
  print-color-adjust: exact !important;
  color: #ffc107 !important; /* Ensure color is applied for printing */
}

/* Ensure filled Font Awesome stars are correctly colored for printing */
.star-rating .fa-star {
  color: #ffc107 !important; /* Bootstrap warning color / or direct */
  -webkit-print-color-adjust: exact !important;
  print-color-adjust: exact !important;
}

/* Ensure empty Font Awesome stars are correctly colored for printing */
.star-rating .fa-star-o {
  color: #ffc107 !important; /* Bootstrap warning color / or direct for the border/empty part */
  -webkit-print-color-adjust: exact !important;
  print-color-adjust: exact !important;
}