/* styles.css */

 {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
}

.scorecard {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.rating {
    display: inline-block;
}

.star {
    font-size: 24px;
    color: #d3d3d3; /* Default star color (unselected) */
    cursor: pointer;
    transition: color 0.2s ease;
}

.star.selected,
.star:hover,
.star:hover ~ .star {
    color: #ffd700; /* Highlighted star color */
}

.score {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

.average-score {
    color: #4caf50;
}

.total-reviews {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}
.star.highlight {
    color: #ffd700; /* Same as the selected star color */
}
