#comentario {
  width: 100%;
  min-height: 103px;
  max-height: 104px;
}

.star-rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 8px;
}

.star-rating-input input {
  display: none;
}

.star-rating-input label {
  font-size: 32px;
  color: #e1e1e1;
  cursor: pointer;
  transition: color 0.2s ease-in-out, transform 0.1s ease-in-out;
  margin: 0;
}

.star-rating-input label:hover {
  transform: scale(1.2);
}

.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
  color: var(--yellow-color, #ffc107);
}

.latest-comments {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}
