/**
 * Canonical Share + Copy link controls (dashboard) and floating re-share bar (public snapshots).
 * Loaded alongside Bootstrap 5 + Font Awesome.
 */

/* Standalone share (e.g. Twitter Scanner full-width row) */
.share-control-standalone.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Public snapshot pages: fixed bottom glass bar */
.share-floating-bar {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: calc(100vw - 2rem);
}

.share-floating-bar__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    color: #fff;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: inherit;
    line-height: 1.2;
}

.share-floating-bar__btn:hover {
    background: rgba(20, 20, 28, 0.92);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.share-floating-bar__btn:focus-visible {
    outline: 2px solid rgba(96, 165, 250, 0.6);
    outline-offset: 2px;
}
