/* Styling for HyperSignal.Helpers.help_tooltip (registry dep). The
 * lib emits the markup but ships no CSS, so consumers own the rules. */

.help-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    outline: none;
    cursor: default;
}
.help-icon-wrap {
    cursor: pointer;
    display: inline-flex;
}
.help-icon {
    width: 0.85rem;
    height: 0.85rem;
    vertical-align: -0.1rem;
    color: var(--pico-muted-color);
}

.help-popup {
    position: absolute;
    z-index: 100;
    top: calc(100% + 0.3rem);
    left: 0;
    padding: 0.45rem 0.65rem;
    background: var(--pico-background-color);
    color: var(--pico-color);
    border: 1px solid var(--pico-muted-border-color);
    border-radius: 0.25rem;
    font-size: 0.78rem;
    line-height: 1.4;
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
    white-space: normal;
    width: max-content;
    max-width: 18rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
