/* Read-only star rating display */
.uv-stars {
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 20px;
    line-height: 1;
    color: lightgray;
    white-space: nowrap;
    letter-spacing: 1px;
}
.uv-stars .uv-stars-active {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    color: cornflowerblue;
    white-space: nowrap;
}

/* Interactive star rating (review form) */
.uv-star-input {
    display: inline-flex;
    flex-direction: row-reverse;
    font-size: 28px;
    gap: 2px;
}
.uv-star-input input {
    display: none;
}
.uv-star-input label {
    cursor: pointer;
    color: lightgray;
    transition: color 0.15s;
    line-height: 1;
}
.uv-star-input label:hover,
.uv-star-input label:hover ~ label,
.uv-star-input input:checked ~ label {
    color: cornflowerblue;
}
.uv-star-input label:hover,
.uv-star-input label:hover ~ label {
    color: salmon;
}
