.sd-star-rating {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.sd-star-rating .stars {
    display: inline-block;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 2px;
    user-select: none;
    margin-right: 8px;
}

.sd-star-rating .star {
    color: #ddd;
    transition: color 0.2s ease;
}

.sd-star-rating .star.active {
    color: #ffa500;
}

.sd-star-rating .star.interactive {
    cursor: pointer;
}

.sd-star-rating .star.interactive:hover {
    color: #ffb733;
}

.sd-star-rating .stars.loading {
    opacity: 0.5;
    pointer-events: none;
}

.sd-star-rating .legend {
    display: inline-block;
    color: #666;
    font-size: 14px;
}

.sd-star-rating .average {
    font-weight: 600;
    color: #333;
}

@media (max-width: 600px) {
    .sd-star-rating {
        display: block;
    }

    .sd-star-rating .stars {
        display: block;
        margin-bottom: 4px;
    }

    .sd-star-rating .legend {
        display: block;
    }
}
