/* 검색 자동완성 드롭다운 (2026-07-17) */
.jss-suggest-box{
  position:absolute; left:0; right:0; top:calc(100% + 6px); z-index:9999;
  background:#1a2332; border:1px solid rgba(120,150,200,.35); border-radius:10px;
  box-shadow:0 12px 32px rgba(0,0,0,.45); overflow:hidden; max-height:360px; overflow-y:auto;
}
.jss-item{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:10px 14px; color:#e6edf3; text-decoration:none; font-size:14px;
  border-bottom:1px solid rgba(255,255,255,.05); cursor:pointer;
}
.jss-item:last-child{ border-bottom:0; }
.jss-item:hover, .jss-item.jss-active{ background:rgba(93,156,236,.18); }
.jss-name{ font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.jss-board{ flex-shrink:0; font-size:11px; color:#8b98a9; background:rgba(255,255,255,.06); padding:2px 8px; border-radius:6px; }
