/* Selection Share Floating Popup */
.ztv-select-share-popup {
    position: absolute;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px) scale(0.95);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
}

.ztv-select-share-popup.ztv-pop-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.ztv-pop-inner {
    display: flex;
    align-items: center;
    background: #ff0000;
    border-radius: 0px;
    padding: 4px 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    gap: 3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Arrow Callout */
.ztv-pop-arrow {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #1e1e1e;
}

.ztv-select-share-popup.ztv-pop-bottom .ztv-pop-arrow {
    top: -6px;
    bottom: auto;
    border-top: none;
    border-bottom: 6px solid #1e1e1e;
}

/* Share Buttons */
.ztv-pop-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.15s;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.ztv-pop-btn:hover {
    transform: translateY(-2px);
}

.ztv-pop-btn svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

/* Individual Brand Colors on Hover */
/*.ztv-pop-fb:hover { background: #1877F2; }
.ztv-pop-x:hover { background: #000000; }
.ztv-pop-wa:hover { background: #25D366; }
.ztv-pop-tg:hover { background: #229ED9; }
.ztv-pop-pin:hover { background: #E60023; }
.ztv-pop-vk:hover { background: #0077FF; }
.ztv-pop-rd:hover { background: #FF4500; }
.ztv-pop-cp:hover { background: #cc0000; }*/

/* Copy Feedback Indicator */
.ztv-pop-btn.ztv-copied {
    background: #28a745 !important;
}