/* Reviews Display Styling */

/* Simple text color for the average rating text */
.text-light-50 {
    color: rgba(255, 255, 255, 0.5);
}

/* Rating Distribution */
.rating-distribution {
    margin-top: 10px;
}

.review-row {
    margin-bottom: 8px;
}

.stars-col {
    display: flex;
    align-items: center;
}

.review-stars {
    font-size: 0.85rem;
    line-height: 1;
}

.review-progress {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
}

.percentage-col {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .average-rating-value {
        font-size: 1.5rem;
    }

    .average-rating-label {
        font-size: 0.8rem;
    }

    .review-stars {
        font-size: 0.75rem;
    }

    .percentage-col {
        font-size: 0.75rem;
    }
}
