.bff-widget {
    background: var(--Border);
    border-radius: 8px;
    padding: 20px 24px;
    text-align: center;
    max-width: 100%;
}

.bff-question {
    font-size: 1rem;
    color: var(--Dark);
    margin: 0 0 14px;
    font-weight: 500;
}

.bff-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.bff-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: transform 0.15s ease, filter 0.2s ease;
    line-height: 1;
}

.bff-btn:hover:not(:disabled) {
    transform: scale(1.18);
}

.bff-btn:focus-visible {
    outline: 2px solid #007cba;
    outline-offset: 3px;
}

.bff-emoji {
    font-size: 32px;
    display: block;
    /* Keep crisp on all platforms */
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

/* Selected state */
.bff-btn.is-selected .bff-emoji {
    filter: none;
}

/* Dim unselected when a choice has been made */
.bff-widget.has-voted .bff-btn:not(.is-selected) .bff-emoji {
    filter: grayscale(1) opacity(0.4);
}

.bff-widget.has-voted .bff-btn:not(.is-selected) {
    cursor: default;
}

/* Label shown above selected button */
.bff-btn.is-selected::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bff-thankyou {
    font-size: 13px;
    color: #555;
    margin-top: 12px;
    min-height: 18px;
    transition: opacity 0.3s ease;
}
