/* 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: #ffffff;
    color: #1f2937;
    font-size: 0.75rem;
    line-height: 1.2;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #bfdbfe;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    white-space: normal;
    max-width: 300px;
    width: max-content;
    pointer-events: none;
}
