.star-rating { display:inline-block; }
.star-rating .star {
  font-size:24px;
  color:#ccc;
  cursor:pointer;
  margin-right:2px;
}
.star-rating .star.active { color:#f5b301; }
.star-rating .rating-count { font-size:14px; margin-left:8px; }
.ferma-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
    font-size: 14px;
}
.ferma-toast.visible {
    opacity: 1;
    transform: translateY(0);
}
