/* Shared dropdown treatment. assets/select-menu.js progressively enhances the
   native value into this consistent keyboard-friendly menu on every route. */
.xlr-select-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.xlr-select-menu { position: relative; width: 100%; min-width: 0; color: #071321; }
.xlr-select-trigger {
  width: 100%; min-height: 48px; display: grid; grid-template-columns: minmax(0,1fr) auto;
  align-items: center; gap: 14px; padding: 10px 12px 10px 14px;
  border: 1.5px solid rgba(0,23,51,.2); border-radius: 7px; background: #fff;
  color: #071321; text-align: left; font: inherit; cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.xlr-select-trigger:hover { border-color: rgba(0,111,255,.55); background: #fbfdff; }
.xlr-select-trigger:focus-visible,.xlr-select-menu.is-open .xlr-select-trigger { outline: 0; border-color: #006fff; box-shadow: 0 0 0 3px rgba(0,111,255,.12); }
.xlr-select-trigger[aria-invalid="true"] { border-color: #b3261e; }
.xlr-select-trigger[aria-invalid="true"]:focus-visible { box-shadow: 0 0 0 3px rgba(179,38,30,.13); }
.xlr-select-trigger:disabled { cursor: not-allowed; opacity: .62; }
.xlr-select-trigger > span,.xlr-select-option > span { min-width: 0; display: flex; flex-direction: column; }
.xlr-select-trigger strong,.xlr-select-option strong { font-size: 14px; line-height: 1.25; font-weight: 680; letter-spacing: -.01em; }
.xlr-select-trigger small,.xlr-select-option small { margin-top: 3px; color: #6b7788; font-size: 11.5px; line-height: 1.3; }
.xlr-select-trigger.is-placeholder strong { color: #6b7788; font-weight: 560; }
.xlr-select-trigger > i { color: #005ec4; font-size: 13px; font-style: normal; transition: transform .16s ease; }
.xlr-select-menu.is-open .xlr-select-trigger > i { transform: rotate(180deg); }
.xlr-select-list {
  position: absolute; z-index: 80; top: calc(100% + 7px); left: 0; right: 0;
  min-width: min(100%, 280px); padding: 7px; border: 1px solid rgba(0,23,51,.16);
  border-radius: 9px; background: #fff;
  box-shadow: 0 22px 60px rgba(7,19,33,.18), 0 4px 12px rgba(7,19,33,.08);
}
.xlr-select-list[hidden] { display: none; }
.xlr-select-option {
  width: 100%; min-height: 50px; display: grid; grid-template-columns: minmax(0,1fr) 22px;
  align-items: center; gap: 12px; padding: 9px 11px; border: 0; border-radius: 6px;
  background: #fff; color: #071321; text-align: left; font: inherit; cursor: pointer;
}
.xlr-select-option:hover,.xlr-select-option:focus-visible { outline: 0; background: #f2f7ff; }
.xlr-select-option.is-selected { background: #edf5ff; }
.xlr-select-option.is-selected strong { color: #005ec4; }
.xlr-select-option > i { color: #005ec4; font-size: 12px; font-style: normal; text-align: center; }
@media (prefers-reduced-motion: reduce) {
  .xlr-select-trigger,.xlr-select-trigger > i { transition: none; }
}
