.places-dropdown {
  position: absolute;
  z-index: 9999;
  max-height: 300px;
  overflow: auto;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  padding: 6px;
  margin-top: 4px;
}
.places-dropdown li {
  list-style: none;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  gap: 8px;
  align-items: center;
}
.places-dropdown li:hover,
.places-dropdown li[aria-selected=\"true\"] {
  background: #f3f4f6;
}
.places-title { font-weight: 600; }
.places-sub { font-size: 12px; color: #6b7280; }
