.rating-section {
  margin-top: 10px;
  border-radius: 8px;
  text-align: center;
  flex-direction: column;
}

.stars {
  display: flex;
  justify-content: center;
}

.star {
  color: white;
  font-size: 3rem;
  cursor: pointer;
  transition: color 0.2s;
}

.star:hover,
.star.active {
  color: #f39c12;
}

#rating-value,
#rating-summary {
  margin: 5px 0;
  color: white;
  font-size: 1.4rem;
}
