/**
 * Rating Badge Center Alignment Fix
 * Forces perfect center alignment for the rating badge text
 * Yellow Background Color
 */

.rating-badge {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 450px !important;
    background: #FFC107 !important;
    color: #FFFFFF !important;
}

/* Hide stars to make text perfectly centered */
.rating-badge .stars {
    display: none !important;
}

.rating-badge .rating-text {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    color: #FFFFFF !important;
}
