#global-search .modal-body {
  scrollbar-width: thin;
  scrollbar-color: var(--ui-border-subtle) transparent;
}

.vp-search-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vp-search-input {
  width: 100%;
}

.vp-search-hint,
.vp-search-empty {
  margin: 0;
  color: var(--vp-muted);
  font-size: 0.9rem;
}

.vp-search-results {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--ui-border-subtle) transparent;
}

.vp-search-result {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid var(--vp-line);
  border-radius: 6px;
  color: inherit;
  text-decoration: none;
  background: var(--vp-panel);
}

.vp-search-result:hover {
  border-color: var(--vp-accent);
  background: var(--vp-accent-bg);
}

.vp-search-result-title {
  color: var(--vp-text);
  font-size: 0.95rem;
  line-height: 1.35;
}

.vp-search-result-excerpt {
  color: var(--vp-muted);
  font-size: 0.85rem;
  line-height: 1.45;
}
