/* Tailwind CSS is now used for styling. See input.css and output.css. */

/* Custom tooltip — content source hidden, shown via JS as position:fixed */
.pw-tooltip {
    position: relative;
    display: inline-block;
    cursor: default;
}
.pw-tooltip .pw-tooltip-text {
    display: none;
}
#pw-tooltip-popup {
    position: fixed;
    z-index: 9999;
    background: #1f2937;
    color: #fff;
    font-size: 0.75rem;
    line-height: 1.2;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: normal;
    max-width: 300px;
    width: max-content;
    pointer-events: none;
}
