/* Act-search widget — externalized 2026-05-06 */
.act-search-widget {
  background: linear-gradient(135deg, #eef7f2 0%, #fbfcf8 100%);
  border: 1px solid #cfe7da;
  border-radius: 14px;
  padding: 18px 20px;
  margin: 18px 0;
  box-shadow: 0 4px 14px rgba(11,107,88,0.08);
}
.act-search-widget h2 {
  margin: 0 0 4px;
  font: 800 1.05rem Inter, system-ui, sans-serif;
  color: #0b6b58;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 0;
  padding-bottom: 0;
}
.act-search-widget h2::before { content: "🔎"; }
.act-search-widget .help { font: 0.86rem Inter; color: #5f6b7a; margin: 0 0 12px; }
.act-search-form { display: flex; gap: 8px; flex-wrap: wrap; margin: 0; }
.act-search-form input {
  flex: 1; min-width: 200px;
  padding: 11px 14px;
  border: 1px solid #dce3ec; border-radius: 10px;
  font: inherit; font-size: 0.96rem;
  background: #fff; color: #172033;
}
.act-search-form input:focus { outline: none; border-color: #0b6b58; box-shadow: 0 0 0 3px rgba(11,107,88,0.18); }
.act-search-form button {
  padding: 11px 20px;
  background: #0b6b58; color: #fff;
  border: 0; border-radius: 10px;
  font: 700 0.96rem inherit; cursor: pointer;
}
.act-search-form button:hover { background: #094d40; }
.act-results {
  margin-top: 16px; max-height: 480px; overflow-y: auto;
  background: #fff; border-radius: 10px;
}
.act-results .empty { padding: 16px; color: #5f6b7a; font-style: italic; text-align: center; font-size: 0.92rem; }
.act-result {
  padding: 12px 16px;
  border-bottom: 1px solid #dce3ec;
  transition: background 0.12s;
}
.act-result:last-child { border-bottom: 0; }
.act-result:hover { background: #fafdfa; }
.act-result a { color: #0b6b58; text-decoration: none; font: 700 0.96rem Inter; }
.act-result a:hover { color: #094d40; text-decoration: underline; }
.act-result .num {
  display: inline-block;
  background: rgba(11,107,88,0.12); color: #0b6b58;
  padding: 2px 8px; border-radius: 999px;
  font: 800 0.74rem Inter; margin-right: 6px;
}
.act-result .excerpt { margin: 4px 0 0; font: 0.86rem/1.5 Inter; color: #3d4859; }
.act-result .excerpt mark { background: #fef3c7; color: #172033; padding: 0 3px; border-radius: 3px; }
.act-tips {
  margin-top: 10px; font: 0.78rem Inter; color: #5f6b7a;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.act-tip {
  padding: 3px 10px;
  background: rgba(255,255,255,0.7);
  border: 1px solid #dce3ec; border-radius: 999px;
  cursor: pointer; color: #0b6b58; font-weight: 600;
}
.act-tip:hover { background: #0b6b58; color: #fff; border-color: #0b6b58; }
