.board-search-popover {
  position: absolute; z-index: 44; right: 50%; bottom: 67px; width: min(420px, calc(100% - 28px));
  transform: translateX(50%); overflow: hidden; border: 1px solid var(--line, #ead9cb); border-radius: 13px;
  background: rgba(255,255,255,.98); box-shadow: 0 22px 50px -30px rgba(43,31,24,.55); cursor: default;
}
.board-search-input-wrap {
  display: grid; grid-template-columns: 20px minmax(0,1fr) 26px; align-items: center; gap: 8px;
  padding: 8px 9px; border-bottom: 1px solid var(--line, #ead9cb);
}
.board-search-input-wrap > svg { width: 17px; height: 17px; color: var(--muted, #97877c); }
.board-search-input {
  min-width: 0; height: 34px; border: 0; outline: 0; padding: 0; color: var(--ink, #241b17);
  background: transparent; font: 500 12px/1.4 Inter, system-ui, sans-serif;
}
.board-search-input::placeholder { color: #a89a91; }
.board-search-close { display: grid; width: 26px; height: 26px; place-items: center; border: 0; border-radius: 7px; color: var(--muted, #97877c); background: transparent; }
.board-search-close:hover { color: var(--ink, #241b17); background: var(--surface, #fbf4ee); }
.board-search-close svg { width: 13px; height: 13px; }
.board-search-results {
  display: grid; height: clamp(220px, 38vh, 340px); align-content: start; overflow-y: auto; padding: 6px;
}
.board-search-result {
  display: grid; width: 100%; grid-template-columns: 34px minmax(0,1fr); align-items: center; gap: 9px;
  border: 0; border-radius: 9px; padding: 8px; color: var(--ink, #241b17); background: transparent; text-align: left;
}
.board-search-result:hover, .board-search-result.active { background: #f8f4f0; }
.board-search-result-icon { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 9px; color: #3976bf; background: #eaf3ff; }
.board-search-result-icon svg { width: 15px; height: 15px; }
.board-search-result > span:last-child { display: flex; min-width: 0; flex-direction: column; gap: 2px; }
.board-search-result b { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.board-search-result small { color: var(--muted, #97877c); font-size: 9px; }
.board-search-empty { margin: 0; padding: 22px 12px; color: var(--muted, #97877c); font-size: 11px; text-align: center; }
@media (max-width: 760px) {
  .board-search-popover { bottom: 66px; width: calc(100% - 24px); }
  .board-search-results { height: clamp(190px, 36vh, 280px); }
}
