.w6g-ss-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 28px 0;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.w6g-ss-align-center {
    justify-content: center;
}

.w6g-ss-align-right {
    justify-content: flex-end;
}

.w6g-ss-label {
    font-size: 13px;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.3px;
}

.w6g-ss-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.w6g-ss-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.w6g-ss-btn:hover {
    background-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

/* Tooltip καθαρά με CSS, χρησιμοποιεί το ήδη υπάρχον aria-label — καμία JS */
.w6g-ss-btn::after {
    content: attr(aria-label);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 5;
}

.w6g-ss-btn:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.w6g-ss-copy.w6g-ss-copied {
    background-color: rgba(61, 220, 115, 0.25);
}
