body {
  font-family: Arial, sans-serif;
}
#map {
  min-height: 500px;
  width: 100%;
}
#controls {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 420px;
  display: flex;
  gap: 10px;
}
#address-input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
}
#earth-button {
  padding: 10px 14px;
  font-size: 16px;
  background-color: #4285f4;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}
#earth-button:hover {
  background-color: #357ae8;
}
#estimate-list {
  padding: 20px;
  background: #f5f5f5;
  border-top: 1px solid #ddd;
}
.estimate-item {
  margin-bottom: 8px;
  padding: 6px 10px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.delete-button {
  background: transparent;
  border: none;
  color: red;
  font-size: 18px;
  cursor: pointer;
}
