/* LAYOUT MAPPA + SIDEBAR (solo dove serve) */
#container {
  display: flex;
  height: calc(100vh - 80px);
  min-height: 600px;
}

#sidebar {
  width: 600px;
  max-width: 100%;
  background: #fafbfc;
  padding: 1.2em 1.5em 1.2em 1.2em;
  box-shadow: 2px 0 8px #0001;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

#map {
  flex: 1;
  width: calc(100% - 600px);
  height: 100%;
  min-height: 300px;
}

/* CONTROLLI NELLA SIDEBAR (MAPPA EDITOR) */
#controls {
  flex: none;
  margin-bottom: 1.5em;
}

#city-select,
#search {
  font-size: 1em;
  width: 90%;
  margin-bottom: 0.8em;
  padding: 0.35em 0.6em;
}

#autocomplete-list {
  position: relative;
}

.autocomplete-item {
  padding: 0.3em 0.7em;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.autocomplete-item:hover {
  background: #f0f0f0;
}

/* VIE SELEZIONATE (SIDEBAR MAPPA EDITOR) */
#selected-streets-list {
  flex: 1;
  overflow-y: auto;
  margin-top: 1em;
}

.selected-street {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: #f3f5fa;
  border-radius: 1.2em;
  margin-bottom: 0.5em;
  padding: 0.3em 0.7em;
  font-size: 1em;
  box-shadow: 0 1px 4px #0001;
}

.selected-street input[type=color] {
  width: 20px;
  height: 20px;
  border: none;
  background: none;
  padding: 0;
}

.remove-btn {
  background: #fa5252;
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;
  line-height: 21px;
}

/* RESPONSIVE SOLO PER LAYOUT MAPPA */
@media (max-width: 900px) {
  #container {
    flex-direction: column;
    height: auto;
  }
  #sidebar {
    width: 100%;
    max-width: none;
    box-shadow: none;
    min-height: 180px;
  }
  #map {
    width: 100%;
    height: 50vh;
  }
}
