/* Reviews Section Styles */
.reviews-list {
    max-height: none;
    margin-top: 20px; /* Add gap between heading and first review */
}

.review-item {
    /* Removed hover effect */
}

.reviewer-avatar img {
    object-fit: cover;
}

.reviewer-avatar .bg-primary {
    font-size: 14px;
    font-weight: 600;
}

.star-rating i {
    color: #ffc107;
}

.star-rating i.text-muted {
    color: #dee2e6 !important;
}

/* Pagination Styles */
.pagination .page-link {
    color: #007bff;
    border-color: #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

.pagination .page-link:hover {
    color: #0056b3;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .review-item {
        padding: 10px;
    }
    
    .reviewer-avatar {
        margin-right: 10px !important;
    }
    
    .reviewer-avatar img,
    .reviewer-avatar .bg-primary {
        width: 35px !important;
        height: 35px !important;
    }
    
    .reviewer-avatar .bg-primary {
        font-size: 12px;
    }
}

/* Rating summary styles */
.rating-summary {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.rating-summary .star-rating i {
    font-size: 18px;
}

/* Review text styling */
.review-text {
    line-height: 1.6;
    color: #495057;
}

/* Source badge */
.review-source {
    background-color: #e9ecef;
    color: #6c757d;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}
