/* ======================================== */
/* hover-tooltip.css - Global tooltips     */
/* ======================================== */

/* ---- Global hover tooltips (macOS WKWebView polyfill) ---- */
.tx-hover-tip {
    position: absolute;
    z-index: 100000;
    max-width: 360px;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.4;
    color: #fff;
    background: rgba(30, 30, 30, 0.92);
    pointer-events: none;
    white-space: pre-line;
    word-break: break-word;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* ========================================
   TX-TOOLTIP (shared HTML tooltip style)
   ======================================== */
.tx-tooltip {
    position: fixed;
    z-index: 9999;
    background: #292524;
    color: #f3f4f6;
    font-size: 0.82rem;
    line-height: 1.4;
    padding: 8px 10px;
    border-radius: 6px;
    pointer-events: none;
    max-width: 320px;
    white-space: normal;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.tx-tooltip .bpt-block {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.tx-tooltip .bpt-hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 4px 0;
}

.tx-tooltip .bpt-guest-note {
    color: #f87171;
}
