/* Book search autocomplete dropdown (autoComplete.js) */
.autoComplete_wrapper {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}
.autoComplete_wrapper > input,
.autoComplete_wrapper > [role="combobox"] {
  width: 100%;
}
.autoComplete_list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 1200;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #dde3ef;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(26, 58, 143, 0.14);
  max-height: min(420px, 70vh);
  overflow-y: auto;
}
.autoComplete_list:empty {
  display: none;
}
.autoComplete_result {
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.autoComplete_result[aria-selected="true"],
.autoComplete_result:hover {
  background: #f4f8fc;
}
.bb-search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: inherit;
}
.bb-search-cover {
  width: 40px;
  height: 54px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  background: #eef2f8;
}
.bb-search-no-cover {
  width: 40px;
  height: 54px;
  border-radius: 4px;
  background: #eef2f8;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bb-search-meta {
  min-width: 0;
  flex: 1;
}
.bb-search-title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  color: #1a3a8f;
  line-height: 1.3;
}
.bb-search-author {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bb-search-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: #f5a800;
  flex-shrink: 0;
}
.bb-search-all {
  display: block;
  padding: 10px 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: #1a3a8f;
  text-decoration: none;
  border-top: 1px solid #eef2f8;
}
.bb-search-all:hover {
  background: #f4f8fc;
  color: #3ab8b8;
}
.bb-search-empty {
  padding: 12px 14px;
  font-size: 0.86rem;
  color: #64748b;
}
.autoComplete_highlight {
  color: #3ab8b8;
  font-weight: 700;
  background: transparent;
}

/* Books sidebar — autocomplete inside search box */
.sidebar .search-box {
  position: relative;
  z-index: 20;
}
.sidebar .search-box .autoComplete_wrapper {
  flex: 1;
}
.sidebar .autoComplete_list {
  left: -16px;
  right: -6px;
}

/* Admin books filter */
.admin-search-ac .search-box {
  position: relative;
  z-index: 30;
}
.admin-search-ac .autoComplete_list {
  left: 0;
  right: 0;
}
