/* Voting wrapper */
.hvs-voting-wrapper {
    border: 1px solid #ddd;
    padding: 15px;
    margin-top: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

/* Each tagged user */
.hvs-user-vote {
    margin-bottom: 10px;
}

/* Display user points */
.hvs-points {
    display: inline-block;
    margin-left: 10px;
    font-weight: bold;
    color: #333;
}

/* Stars */
.hvs-star {
    font-size: 24px;
    color: #ccc; /* Default grey */
    cursor: pointer;
    transition: color 0.3s;
    margin-right: 2px;
}

.hvs-star:hover,
.hvs-star:hover ~ .hvs-star {
    color: #f5b301; /* Highlight on hover */
}

.hvs-star-selected {
    color: #f5b301; /* Highlight selected stars */
}

/* Disable pointer for stars temporarily */
.hvs-star.disabled {
    pointer-events: none;
    opacity: 0.6;
}
