/* Minimal iframe-friendly styling */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: #fff;
  padding: 8px;
}

.search-box {
  position: relative;
}

#search-input {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

#search-input:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

#results {
  list-style: none;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 240px;
  overflow-y: auto;
}

#results li {
  padding: 10px 12px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

#results li:hover,
#results li:focus {
  background: #f0f4ff;
  outline: none;
}

#results li:last-child {
  border-bottom: none;
}

#status {
  padding: 10px 12px;
  font-size: 13px;
  color: #666;
}

#status.error {
  color: #cc0000;
}
