/* Estilos para o body */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Estilos para o mapa */
#map {
  height: 100vh;
  width: 100%;
}

/* Estilos para o botão de inserir nova marcação */
.insert-button {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: inline-block;
  padding: 10px 20px;
  background-color: #2C64C6;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
}

/* Estilos para o conteúdo do popup */
.popup-content {
  font-size: 16px;
}

/* Estilos para o botão de criar marcação */
.create-marker-button {
  background-color: #2C64C6;
  color: #ffffff;
  padding: 8px 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 8px;
}
.botao-executado {
  background-color: #2C64C6;
  color: #ffffff;
  padding: 8px 16px;
  border: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 8px;
}
.create-marker-button:hover {
  background-color: #1F4E9C;
}
.leaflet-control-layers {
	position: relative;
	top: 70px;
	right: 13px;
	}

