/* Same sticky action bar as /tools/address/: sits at the end of the
   result, but pins to the viewport bottom whenever that spot is below
   the fold — phones always see the buttons without scrolling. */
.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: sticky;
  bottom: 0;
  z-index: 40;
  margin-top: 18px;
  padding: 12px 0 max(12px, env(safe-area-inset-bottom));
  background: rgba(250, 249, 247, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line2, #efede8);
}
.actions[hidden] { display: none; }
.actions .btn {
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 18px;
  cursor: pointer;
  border: 1px solid var(--line, #e4e2dd);
  background: #fff;
  color: var(--ink2, #3d4855);
  display: inline-block;
  text-decoration: none;
}
.actions .btn:hover {
  border-color: var(--ink, #11181f);
  color: var(--ink, #11181f);
  text-decoration: none;
}
.actions .btn.primary {
  background: var(--blue, #2563eb);
  border-color: var(--blue, #2563eb);
  color: #fff;
}
.actions .btn.primary:hover {
  background: #1b4fd0;
  color: #fff;
}
@media (max-width: 400px) {
  .actions { gap: 8px; }
  .actions .btn { padding-left: 13px; padding-right: 13px; }
}

/* Current-page crumb: same as /tools/address/ — click starts over, no reload. */
.crumb a.here { color: var(--mut, #6b7683); text-decoration: none; }
.crumb a.here:hover { color: var(--ink2, #3d4855); text-decoration: underline; }

/* Address-bar X — reserved right padding already exists on most #q fields. */
.searchbar .clr,
.qwrap .clr {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: var(--mut, #6b7683);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  z-index: 2;
}
.qwrap { position: relative; }
.clr:hover { background: #f1f3f5; color: var(--ink, #11181f); }
.clr svg { width: 16px; height: 16px; flex-shrink: 0; }
.clr.hidden { display: none !important; }
.searchrow #q,
.qwrap #q,
.qwrap #qbrand { padding-right: 44px; }
