.ebsa-votes {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 24px 20px;
    margin: 32px 0 16px;
    text-align: center;
}
.ebsa-votes__title {
    font-size: 1em;
    font-weight: 700;
    margin: 0 0 14px;
    color: #1a1a1a;
}
.ebsa-votes__stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}
.ebsa-star {
    font-size: 2em;
    color: #ccc;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.1s ease;
    line-height: 1;
}
.ebsa-star:hover,
.ebsa-star--hover {
    color: #FF9900;
    transform: scale(1.15);
}
.ebsa-star--filled {
    color: #FF9900;
}
.ebsa-votes__stars[data-voted="1"] .ebsa-star {
    cursor: default;
    pointer-events: none;
}
.ebsa-votes__summary {
    font-size: 0.88em;
    color: #555;
    margin: 4px 0 0;
}
.ebsa-votes__thanks {
    font-size: 0.88em;
    color: #2d8a2d;
    font-weight: 600;
    margin: 6px 0 0;
}
