/* CS2 GoldenEye — 可复用饰品搜索下拉组件样式 */
.isw-suggest-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99999;
  max-height: 320px;
  overflow-y: auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #dee2e6;
  background: #fff;
  border-radius: 0 0 0.375rem 0.375rem;
}
/* 使包含下拉的父容器拥有高层叠上下文，避免被后续 DOM 元素遮挡 */
.isw-dropdown-anchor {
  position: relative;
  z-index: 1050;
}
.isw-suggest-list mark {
  background: #fff3b0;
  padding: 0;
}
.isw-suggest-list .isw-item.active {
  background-color: #e9ecef;
}
