body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#sketch-container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  overflow: hidden;
}


.leaflet-tile-pane {
  opacity: 0;
  transition: 0.3s
}
.leaflet-tile-pane.active {
  opacity: 1;
  transition: 0.3s
}
.leaflet-control-zoom {
  display: none;
}

.leaflet-container {
  background-color: white !important;
}
#map {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
}

#log {
  /* border: 1px solid red; */
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  color: red;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  padding: 20px
}

.container-ui {
  display: flex;
  width: 100%;
  position: absolute;
  top: 0;
  display: flex;    
  align-items: center;
  justify-content: center;
  z-index: 100;
}

button:focus {
  outline: none;
}

.color-btn {
  cursor: pointer;
  width: 32px !important;
  height: 32px !important;
  border-radius: 100%;
  padding: 0;
  /* border: none; */
  border: 1px solid white;
  margin-right: 8px;
  margin-top: 8px;
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}

.color-btn:last-of-type {
  margin-right: 0px;
}

.container-start {
  display: flex;    
  align-items: center;
  /* justify-content: center; */
  height: 40px;
  width: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 0;
  z-index: 100;
}

.on-off-btn {
  border: none;
  color: white;
  border: 1px solid white;
  background-color: black;
  border-radius: 20px;
  padding: 8px 12px;
  font-size: 12px;
  width: 75%;
  transition: 0.3s;
  cursor: pointer;
  display: block;
  margin: 0 4px 8px 8px;
}

.show-hide-btn {
  border: none;
  color: white;
  border: 1px solid white;
  background-color: black;
  border-radius: 20px;
  padding: 8px 12px;
  font-size: 12px;
  width: 75%;
  transition: 0.3s;
  cursor: pointer;
  display: block;
  margin: 0 8px 8px 4px;
}



.on-off-btn.active {
  background-color: #ef476f;
}

.color-btn.red {
  background-color: #ef476f
}
.color-btn.yellow {
  background-color: #ffd166
}
.color-btn.green {
  background-color: #06d6a0
}
.color-btn.blue {
  background-color: #118ab2
}
.color-btn.black {
  background-color: #073b4c
}