.so-ew-share-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
}

/* ── Trigger knop ──────────────────────────────────────────────────────── */

.so-ew-share-btn {
    padding: 10px;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    background: transparent;
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    gap: 8px;
}

.so-ew-share-btn:link,
.so-ew-share-btn:visited,
.so-ew-share-btn:active {
    color: inherit;
    text-decoration: none;
}

.so-ew-share-btn:hover {
    cursor: pointer;
}

.so-ew-share-btn.so-ew-share-btn--circle {
    border-radius: 999px;
    width: 44px;
    height: 44px;
    padding: 0;
}

.so-ew-share-btn-label {
    line-height: 1.2;
}

/* ── Feedback ───────────────────────────────────────────────────────────── */

.so-ew-share-feedback {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%) translateY(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    white-space: nowrap;
    z-index: 10;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.2;
    background: #1f2937;
    color: #ffffff;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.so-ew-share-feedback.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
