.star-rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.star-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stars {
    display: flex;
    cursor: pointer;
    justify-content: center;
}

.star {
    font-size: 24px;
    color: gold;
    padding: 0 5px;
}

.star.gray {
    color: gray;
}

.average-rating {
    margin-left: 10px;
    font-size: 18px;
}

.voted-message {
    margin-top: 10px;
    color: red;
    font-size: 16px;
    display: none;
}
