/* BTA33KAR — bta-interactions.css v1.0 (P2C-R3)
   Shared interactive primitives. Loads after bta-listing.css v1.3. Tiny by design.

   Range presets are <li data-value> wrapping a native <button type="button">, so
   Tab/Enter/Space come from the platform with no new JS: the frozen delegated
   handler still matches ".list-of-suggetions li" and reads data-value from the LI.
   The reset restores the LI's former presentation — a classless <button> otherwise
   inherits UA chrome (grey bg, 2px outset, centred, shrink-to-fit). */
.list-of-suggetions > li > button {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    display: block;
    inline-size: 100%;
    text-align: start;
    cursor: pointer;
}

.list-of-suggetions > li > button:focus-visible {
    outline: var(--bta-focus-width, 3px) solid var(--bta-focus, #063A5D);
    outline-offset: calc(-1 * var(--bta-focus-width, 3px));
}
