/* Legacy search box autocomplete host — DGA styles live in css/dga/patterns/dga-search.css */

.box1 fieldset.search,
.box1 form,
form#searchform {
  position: relative;
}

/* WCAG 1.4.1 — match emphasis and active option use non-color cues (see dga-search.css) */
.dga-search-autocomplete__menu .dga-form-dropdown__option mark,
.dga-search-hit {
  font-weight: var(--dga-font-weight-bold, 700);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.dga-search-autocomplete__menu .dga-form-dropdown__option.is-active {
  font-weight: var(--dga-font-weight-semibold, 600);
  box-shadow: inset 3px 0 0 0 var(--dga-text-default, #161616);
}

html[data-theme="dark"] .dga-search-autocomplete__menu .dga-form-dropdown__option.is-active {
  box-shadow: inset 3px 0 0 0 var(--dga-text-default, #f3f4f6);
}

@media (prefers-color-scheme: dark) {
  .sac-listbox:not([class*="dga"]) {
    background: #1f2937;
    border-color: #374151;
    color: #f3f4f6;
  }
}
