/* Local place suggestion dropdown (Bay Area–biased) */

.place-suggest-wrap {
  position: relative;
  width: 100%;
  flex: 1;
  min-width: 0;
  z-index: 30;
}

.place-suggest-wrap > input {
  width: 100%;
  box-sizing: border-box;
}

.place-suggest-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 5000;
  max-height: 280px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
  padding: 6px;
}

.place-suggest-item {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  color: #0f172a;
}

.place-suggest-item:hover,
.place-suggest-item.is-active {
  background: rgba(179, 7, 56, 0.08);
}

.place-suggest-item-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.place-suggest-item-meta {
  display: block;
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
  line-height: 1.35;
}

.place-suggest-dist {
  margin-left: 6px;
  color: #b30738;
  font-weight: 700;
}

.place-suggest-empty {
  padding: 10px 12px;
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
}
