body {
  margin: 0;
  font-family: sans-serif;
}
#map {
  height: 100vh;
}
#info {
  position: absolute;
  top: 10px;
  left: 50px;
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

#info input[type="text"],
#info input[type="number"] {
  width: 260px;
  padding: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

#loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  max-height: 220px;
  overflow: auto;
  z-index: 3000;
}

.resultItem {
  padding: 8px 10px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
}

.resultItem:last-child {
  border-bottom: none;
}

.resultItem:hover {
  background: #f5f7fa;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ddd;
  border-top: 6px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
