/* Professional Reviews - Star Rating Fixes */

/* Target the specific reviews section stars */
.whole_reviews_section .stars svg {
    width: 24px !important;
    height: 24px !important;
    fill: #FFD700 !important;
    /* Gold color */
    margin: 0 2px !important;
}

.whole_reviews_section .stars {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 20px !important;
}

/* Fix for individual review stars if they exist */
.review-item .stars svg {
    width: 16px !important;
    height: 16px !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whole_reviews_section .stars svg {
        width: 20px !important;
        height: 20px !important;
    }
}