* { box-sizing: border-box; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  margin: 0;
  color: #1f2937;
  background: #f7faf7;
}
header, footer {
  padding: 1rem 1.25rem;
  background: #eaf6ec;
  border-bottom: 1px solid #d6e9d8;
}
footer { border-top: 1px solid #d6e9d8; border-bottom: 0; }
h1 { margin: 0 0 .4rem; font-size: 1.6rem; }
main {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 1rem;
  padding: 1rem;
}
.panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: .9rem;
}
#search {
  width: 100%;
  padding: .6rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  margin-bottom: .75rem;
}
#locationList {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 70vh;
  overflow: auto;
}
#locationList li {
  padding: .6rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: .5rem;
  cursor: pointer;
}
#locationList li:hover { border-color: #84cc16; background: #f7fee7; }
#map {
  height: 75vh;
  width: 100%;
  border-radius: 8px;
}
@media (max-width: 900px) {
  main { grid-template-columns: 1fr; }
  #map { height: 55vh; }
}