html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: system-ui, sans-serif;
}

#header {
  padding: 10px;
  background: #1e88e5;
  color: white;
}

#status {
  font-size: 14px;
  margin-top: 4px;
}

#map {
  height: calc(100% - 80px);
}
#controls {
  padding: 8px;
  background: #1976d2;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

#controls button {
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  background: white;
  color: #1976d2;
  font-weight: bold;
  cursor: pointer;
}

#controls button:hover {
  background: #e3f2fd;
}
#controls select {
  padding: 6px;
  border-radius: 4px;
  border: none;
  font-weight: bold;
  color: #1976d2;
}
#controls button,
#controls select {
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

#btn-search {
  background: #ffeb3b;
  color: #333;
}

#btn-search:hover {
  background: #fdd835;
}
/* cursore selezione punto */
.map-select-mode {
  cursor: pointer !important;
}
