/* Local search modal — self-hosted, styles the widget assets/js/search.js builds. */
.hmt-search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  padding: 10vh 20px 0;
}
.hmt-search-overlay.is-open { display: block; }
.hmt-search-modal {
  max-width: 600px;
  margin: 0 auto;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
}
.hmt-search-input {
  width: 100%;
  box-sizing: border-box;
  padding: 18px 20px;
  font-size: 18px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
}
.hmt-search-results {
  max-height: 50vh;
  overflow-y: auto;
}
.hmt-search-result {
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hmt-search-result:hover { background: rgba(255, 255, 255, 0.05); }
.hmt-search-result-title { color: #fff; font-size: 15px; }
.hmt-search-result-tags { color: rgba(255, 255, 255, 0.5); font-size: 12px; margin-top: 2px; }
.hmt-search-empty,
.hmt-search-error { padding: 16px 20px; color: rgba(255, 255, 255, 0.5); font-size: 14px; }
