.star-rating {
    align-items: baseline;  // Align to the baseline of the text
    display: flex;
    justify-content: flex-start;  // Start from the left, if you want it centered, use center
}

.star-rating .star {
    cursor: pointer;
    padding: 0 5px;
    color: lightgray;
}

.star-rating .star.selected {
    color: gold;
}

.star-rating .rating-value {
    font-size: 18px !important;
    font-weight: normal !important;
    font-family: 'Helvetica', sans-serif !important;
    margin-left: 15px;
}
