* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body { display: flex; flex-direction: column; }

#search {
  position: relative;
  padding: 8px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}
#q {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid #bbb;
  border-radius: 6px;
  min-height: 44px;
}
#suggestions {
  position: absolute;
  left: 8px; right: 8px; top: 100%;
  margin: 0; padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #bbb;
  border-top: none;
  border-radius: 0 0 6px 6px;
  max-height: 50vh;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
#suggestions li {
  padding: 12px 14px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  min-height: 44px;
  font-size: 14px;
}
#suggestions li:last-child { border-bottom: none; }
#suggestions li:hover, #suggestions li.active { background: #f0f4ff; }

#map { flex: 1; min-height: 0; }

#locate {
  position: fixed;
  right: 12px;
  bottom: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  cursor: pointer;
  z-index: 1000;
}
#locate.active { background: #2b7cff; color: #fff; }
#locate.loading { opacity: 0.6; }
