/* Sternbewertung – kompakter Overlay-Stil */
.star-rating-container {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 6px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.star-rating-star {
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
  color: #6c757d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.star-rating-star.filled {
  color: #ffd700;
}

.star-rating-star.priority-2 {
  color: #ffc107;
}

.star-rating-star.priority-1 {
  color: #ffd700;
}

.star-rating-star.priority-3 {
  color: #6c757d;
}
