.rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
}

.stars {
    position: absolute;
    left: 51%;
    /* margin-bottom: -14px; */
    width: 200px;
  

}

.stars i {
    font-size: 20px;
    color: #464646;
    cursor: pointer;
    transition: color 0.2s ease;
}

.stars i:hover,
.stars i.active {
    color: #ffd700;
}

.rating-average,
.rating-count {
    font-size: 0.9em;
    color: #666;
    margin: 2px 0;
}