/* css/shared/instr-help-link.css
   Shared style for "?? How do I use this?" links added to all pages.
   Include this file in every page that has help links. */

.instr-help-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.78rem;
    color: var(--help-link-color, #2563eb);
    text-decoration: none;
    white-space: nowrap;
    margin-left: 8px;
    padding: 2px 6px;
    border-radius: 5px;
    border: 1px solid var(--help-link-border, #dbeafe);
    background: var(--help-link-bg, #eff6ff);
    transition: background 0.15s, border-color 0.15s;
    vertical-align: middle;
    line-height: 1.4;
}

.instr-help-link:hover {
    background: var(--help-link-hover-bg, #dbeafe);
    border-color: var(--help-link-hover-border, #93c5fd);
    text-decoration: underline;
}

.instr-help-link:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}