body {
  background-color: #f5f5f5;
}

h2 {
  color: #2c6f31;
}

#map {
  height: 400px; /* ou 100vh, ou altura adequada */
  width: 85%;   /* para ocupar a largura */
}

form {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
}

.btn-success {
  font-weight: 600;
}

/* Remove marcadores da lista */
.ui-autocomplete {
  list-style-type: none;
  padding: 0;
  margin: 0;
  background: white;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 0.075);
  z-index: 10000 !important;
}

/* Estilo dos itens da lista */
.ui-autocomplete li {
  padding: 0.375rem 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #212529;
}

/* Fundo diferente quando passar o mouse */
.ui-autocomplete li.ui-state-active {
  background-color: #0d6efd;
  color: white;
  border-radius: 0.25rem;
}


@media (min-width: 768px) {
    .col-md-6 {
        width: 100% !important;
    }
    .col-md-4 {
        width: 100% !important;
    }
    
}

@media (max-width: 576px) {
  form {
    padding: 15px;
  }
}

.leaflet-popup-content-wrapper {
  max-width: 200px;      /* limite de largura da popup */
  max-height: 400px;     /* limite de altura da popup */
}