/* social-media-tooltip.css */

/* ================================ */
/* Tooltip Styles for Popper.js     */
/* ================================ */

.tooltip-box {
    position: fixed;  /* Change from absolute to fixed */
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.tooltip-box.show {
    opacity: 1;
}
