/* ========== CONTROLES NATIVOS DO LEAFLET ========== */
/* Configurações gerais */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(10px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Estilização base dos controles */
.leaflet-control-container .leaflet-control:not(.leaflet-control-scale):not(.leaflet-control-compass):not(.leaflet-control-attribution) {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 5px;
}

/* ========== CONTROLES DE ZOOM ========== */
.leaflet-control-zoom {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  overflow: visible;
  right: 0.75vw !important;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  background: #00042C !important;
  border: none !important;
  border-radius: 50% !important;
  color: #F8DD4F !important;
  font: bold 18px 'Arial', sans-serif !important;
  text-align: center;
  text-decoration: none;
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  margin: 2px;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 4, 44, 0.3);
}

.leaflet-control-zoom-in:hover,
.leaflet-control-zoom-out:hover {
  background: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%) !important;
  color: #F8DD4F !important;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 4, 44, 0.4) !important;
}

/* ========== CONTROLE DE MEDIÇÃO ========== */
.leaflet-control-measure {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  position: relative;
  right: 0.75vw !important;
}

.leaflet-measure-toggle {
  background: #00042C !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  margin: 2px;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 4, 44, 0.3);
  text-decoration: none;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  background-image: none !important;
  background-size: 0 !important;
}

.leaflet-measure-toggle:hover {
  background: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%) !important;
  color: white !important;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 4, 44, 0.4) !important;
}

.leaflet-measure-toggle::before {
  content: "\f547";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px !important;
  text-indent: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #F8DD4F;
}

.leaflet-measure-expanded .leaflet-measure-toggle {
  background: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%) !important;
  transform: scale(1.02);
  box-shadow: 0 0 0 2px rgba(0, 119, 182, 0.4) !important;
}

.leaflet-measure-contents {
  display: none;
  position: absolute;
  top: 0;
  left: -185px;
  background: rgba(10, 38, 58, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 15px !important;
  padding: 15px !important;
  box-shadow: 0 4px 20px rgba(0, 4, 44, 0.4) !important;
  min-width: 180px;
  z-index: 999;
  animation: slideInLeft 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.leaflet-measure-expanded .leaflet-measure-contents {
  display: block !important;
}

.leaflet-measure-contents::after {
  content: '';
  position: absolute;
  top: 15px;
  right: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid rgba(10, 38, 58, 0.95);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  filter: drop-shadow(2px 0 4px rgba(0, 0, 0, 0.1));
}

.leaflet-control-measure h5 {
  color: white !important;
  margin: 0 0 10px 0 !important;
  padding: 0 0 8px 0 !important;
  font-size: 14px !important;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.leaflet-measure-actions {
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  list-style: none !important;
  list-style-image: none !important;
}

.leaflet-control-measure a.start {
  display: flex !important;
  align-items: center;
  gap: 8px;
  width: calc(100% - 4px) !important;
  height: 42px !important;
  margin-bottom: 8px;
  padding: 0 12px !important;
  background: #00042C !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 4, 44, 0.3) !important;
  text-decoration: none !important;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  background-image: none !important;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 0 !important;
  padding-left: 12px !important;
}

.leaflet-control-measure a.start:hover {
  background: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%) !important;
  color: white !important;
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 4, 44, 0.4) !important;
  opacity: 1 !important;
}

.leaflet-control-measure a.start::before {
  content: none;
  font-family: none;
  font-weight: 900;
  font-size: 16px;
  min-width: 16px;
  flex-shrink: 0;
}

.leaflet-control-measure a.start.active {
  background: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%) !important;
  color: white !important;
  box-shadow: 0 0 0 2px rgba(0, 119, 182, 0.4) !important;
  transform: scale(1.02);
}

.leaflet-control-measure a.start.active:hover {
  background: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%) !important;
  color: white !important;
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 119, 182, 0.6) !important;
}

/* ========== CONTROLE DE LOCALIZAÇÃO ========== */
.leaflet-control-locate {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  right: 0.75vw !important;
}

.leaflet-control-locate a {
  background: #00042C !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  margin: 2px;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 4, 44, 0.3);
  text-indent: -9999px;
  overflow: hidden;
  background-image: none !important;
  background-size: 0 !important;
}

.leaflet-control-locate a:hover {
  background: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%) !important;
  color: white !important;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 4, 44, 0.4) !important;
}

.leaflet-control-locate a::before {
  content: "\f601";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px !important;
  text-indent: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #F8DD4F;
}

.leaflet-control-locate a span,
.leaflet-control-locate a .leaflet-control-locate-location-arrow {
  display: none !important;
}

/* ========== CONTROLE DE FULLSCREEN ========== */
.leaflet-control-fullscreen {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  right: 0.75vw !important;
}

.leaflet-control-fullscreen a {
  background: #00042C !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  margin: 2px;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 4, 44, 0.3);
}

.leaflet-control-fullscreen a:hover {
  background: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%) !important;
  color: white !important;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 4, 44, 0.4) !important;
}

.leaflet-control-fullscreen a::before {
  content: "\f065";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px !important;
  color: #F8DD4F !important;
}

.leaflet-fullscreen-on .leaflet-control-fullscreen a::before {
  content: "\f066";
}

/* ========== CONTROLE DE IMPRESSÃO ========== */
.leaflet-control-browser-print {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  right: 0.75vw !important;
}

.leaflet-control-browser-print a {
  background: #00042C !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  margin: 2px;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 4, 44, 0.3);
}

.leaflet-control-browser-print a:hover {
  background: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%) !important;
  color: white !important;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 4, 44, 0.4) !important;
}

.leaflet-control-browser-print a::before {
  content: "\f019";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px !important;
  color: #F8DD4F !important;
}

.leaflet-control-browser-print,
.leaflet-control-browser-print a {
  position: relative !important;
}
 
.browser-print-holder {
background: #00042C !important;
  color: white !important;
  border: none !important;
  /* border-radius: 10px !important; */
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 4, 44, 0.3);
} 

.browser-print-holder:hover {
  background: linear-gradient(to top, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(0, 4, 44, 0.4) !important;
  transition: all 0.3s ease;
}

/* ========== CONTROLE DE LAYERS ========== */
.leaflet-control-container .leaflet-top.leaflet-right .leaflet-control:has(.leaflet-control-layers-toggle) {
  right: 0.75vw !important;
}

.leaflet-control-layers-toggle {
  background: #00042C !important;
  color: #F8DD4F !important;
  border: none !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  margin: 2px;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 4, 44, 0.3);
}

.leaflet-control-layers-toggle:hover {
  background: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%) !important;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 4, 44, 0.4) !important;
}

/* ========== CONTROLE DE DESENHO ========== */
.leaflet-draw-menu {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  position: relative;
  right: 0.75vw !important;
}

.leaflet-draw-menu #draw-menu-btn {
  background: #00042C !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  margin: 2px;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 4, 44, 0.3);
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none !important;
}

.leaflet-draw-menu #draw-menu-btn:hover {
  background: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%) !important;
  color: white !important;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 4, 44, 0.4) !important;
}

.leaflet-draw-menu #draw-menu-btn::before {
  content: "\f303";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  text-indent: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #F8DD4F !important;
}

.leaflet-draw-menu.expanded #draw-menu-btn {
  background: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%) !important;
  transform: scale(1.02);
  box-shadow: 0 0 0 2px rgba(0, 119, 182, 0.4) !important;
}

.leaflet-draw-mini-box {
  display: none;
  position: absolute;
  top: 0;
  left: -185px;
  background: rgba(10, 38, 58, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 15px !important;
  padding: 15px !important;
  box-shadow: 0 4px 20px rgba(0, 4, 44, 0.4) !important;
  min-width: 180px;
  z-index: 1000;
  animation: slideInLeft 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.leaflet-draw-menu:hover .leaflet-draw-mini-box {
  display: none !important;
}

.leaflet-draw-menu.expanded .leaflet-draw-mini-box {
  display: block !important;
}

.leaflet-draw-mini-box::after {
  content: '';
  position: absolute;
  top: 15px;
  right: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid rgba(10, 38, 58, 0.95);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  filter: drop-shadow(2px 0 4px rgba(0, 0, 0, 0.1));
}

.leaflet-draw-mini-box h6 {
  color: white !important;
  margin: 0 0 10px 0 !important;
  padding: 0 0 8px 0 !important;
  font-size: 14px !important;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.leaflet-draw-mini-box hr {
  border: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
  margin: 10px 0 !important;
}

.leaflet-draw-mini-box button {
  display: flex !important;
  align-items: center;
  gap: 8px;
  width: 100% !important;
  height: 42px !important;
  margin-bottom: 8px;
  padding: 0 12px !important;
  background: #00042C !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 4, 44, 0.3) !important;
  text-decoration: none !important;
  white-space: nowrap;
  box-sizing: border-box;
}

.leaflet-draw-mini-box button:hover {
  background: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%) !important;
  color: white !important;
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 4, 44, 0.4) !important;
}

.leaflet-draw-mini-box button:last-child {
  margin-bottom: 0;
}

.leaflet-draw-mini-box button i {
  min-width: 16px;
  flex-shrink: 0;
  color: white;
  transition: all 0.3s ease;
}

.leaflet-draw-mini-box button .btn-label {
  color: white;
  font-weight: 600;
}

.leaflet-draw-mini-box button input[type="color"] {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 3px;
  margin-left: auto;
  cursor: pointer;
  background: transparent;
}

.leaflet-draw-mini-box #polygon-btn::before,
.leaflet-draw-mini-box #polyline-btn::before,
.leaflet-draw-mini-box #rectangle-btn::before,
.leaflet-draw-mini-box #circle-btn::before,
.leaflet-draw-mini-box #edit-btn::before,
.leaflet-draw-mini-box #delete-btn::before,
.leaflet-draw-mini-box #save-btn::before,
.leaflet-draw-mini-box #clear-btn::before,
.leaflet-draw-mini-box #color-btn::before {
  content: none !important;
}

.leaflet-draw-mini-box #polygon-btn i::before {
  content: "\f5ee";
}

.leaflet-draw-mini-box #polyline-btn i::before {
  content: "\f4d7";
}

.leaflet-draw-mini-box #rectangle-btn i::before {
  content: "\f5cb";
}

.leaflet-draw-mini-box #circle-btn i::before {
  content: "\f111";
}

.leaflet-draw-mini-box #edit-btn i::before {
  content: "\f044";
}

.leaflet-draw-mini-box #delete-btn i::before {
  content: "\f2ed";
}

.leaflet-draw-mini-box #save-btn i::before {
  content: "\f0c7";
}

.leaflet-draw-mini-box #clear-btn i::before {
  content: "\f51a";
}

.leaflet-draw-mini-box #color-btn i::before {
  content: "\f53f";
}

/* ==========  COMPASS / SCALE / ATTRIBUTION ========== */
/* COMPASS */
.leaflet-control-compass {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(0, 4, 44, 0.2) !important;
  box-shadow: 0 2px 10px rgba(0, 4, 44, 0.3) !important;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px !important;
  padding: 4px !important;
  transition: all 0.3s ease;
  left: 4vw;
}

/* SCALE*/
.leaflet-control-scale {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  border-radius: 0 !important;
  padding: 8px;
  left: 3.75vw;
}

/* ATTRIBUTION */
.leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.75) !important;
  border: 1px solid rgba(0, 4, 44, 0.2) !important;
  box-shadow: 0 2px 10px rgba(0, 4, 44, 0.3) !important;
  border-radius: 20px !important;
  padding: 6px 8px !important;
  margin-right: 10px !important;
  margin-bottom: 10px !important;
  font-size: 11px !important;
  color: #333 !important;
}

.leaflet-control-attribution a {
  color: #0077b6 !important;
  text-decoration: none !important;
}

.leaflet-control-attribution a:hover {
  text-decoration: underline !important;
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 768px) {
  .leaflet-measure-contents {
    left: -160px;
    min-width: 140px;
    padding: 12px;
  }

  .leaflet-control-measure a.start {
    height: 38px;
    font-size: 12px;
    gap: 6px;
    padding: 0 10px !important;
  }

  .leaflet-control-measure a.start::before {
    font-size: 14px;
  }

  .leaflet-draw-mini-box {
    left: -160px;
    min-width: 140px;
    padding: 12px;
  }

  .leaflet-draw-mini-box button {
    height: 35px;
    font-size: 11px;
    gap: 6px;
    padding: 0 10px;
  }

  .leaflet-draw-mini-box button i {
    font-size: 12px;
  }

  .leaflet-control-zoom-in,
  .leaflet-control-zoom-out,
  .leaflet-control-locate a,
  .leaflet-control-fullscreen a,
  .leaflet-control-browser-print a,
  .leaflet-control-layers-toggle,
  .leaflet-draw-menu #draw-menu-btn,
  .leaflet-measure-toggle {
    width: 36px !important;
    height: 36px !important;
    font-size: 14px;
  }

  .leaflet-control-compass,
  .leaflet-control-scale {
    margin-left: 15px !important;
    margin-bottom: 15px !important;
  }

  .leaflet-bottom.leaflet-left {
    margin-left: 15px !important;
    margin-bottom: 15px !important;
  }

  .leaflet-control-attribution {
    margin-right: 15px !important;
    margin-bottom: 15px !important;
    font-size: 10px !important;
  }

  .leaflet-control-attribution a[href*="leafletjs.com"],
  .leaflet-control-attribution a:not([href*="leafletjs.com"]) {
    font-size: 10px !important;
  }
}

@media (max-width: 480px) {
  .leaflet-draw-mini-box {
    left: -120px;
    min-width: 100px;
    padding: 8px;
  }

  .leaflet-draw-mini-box button {
    height: 32px;
    font-size: 10px;
    gap: 4px;
    padding: 0 8px;
  }

  .leaflet-control-compass,
  .leaflet-control-scale {
    margin-left: 10px !important;
    margin-bottom: 10px !important;
  }

  .leaflet-bottom.leaflet-left {
    margin-left: 10px !important;
    margin-bottom: 10px !important;
  }

  .leaflet-control-compass {
    padding: 6px;
  }

  .leaflet-control-attribution {
    margin-right: 10px !important;
    margin-bottom: 10px !important;
    font-size: 9px !important;
    padding: 3px 6px !important;
  }

  .leaflet-control-attribution a[href*="leafletjs.com"],
  .leaflet-control-attribution a:not([href*="leafletjs.com"]) {
    font-size: 9px !important;
  }
}

/* ========== ESTILOS DE RÓTULO DE MEDIÇÃO ========== */
.leaflet-measure-lable {
  padding: 1px 7px;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  white-space: nowrap;
  display: inline-block;
  position: absolute;
}

.leaflet-measure-lable .content {
  width: auto;
  display: inline-block;
}

.leaflet-measure-lable .close {
  width: 15px;
  height: 15px;
  position: relative !important;
  top: -3px !important;
  left: 5px !important;
  cursor: pointer;
}

.leaflet-measure-lable .close .icon {
  width: 15px;
  height: 15px;
  cursor: pointer;
  top: 2px;
  position: relative;
}

.leaflet-tooltip.my-labels {
  background-color: transparent;
  color: black;
  border: transparent;
  box-shadow: none;
  font-weight: 750;
  font-size: 10px;
  text-shadow: 1px 1px 0px white, -1px -1px 0px white, -1px 1px 0px white, 1px -1px 0px white;
}


/* Tooltips customizados */
.leaflet-tooltip.my-labels {
  white-space: normal !important;
  word-wrap: normal !important;
  word-break: keep-all !important;
  display: flex !important;
  text-align: center !important;
}

/* ========== LIMPEZA ========== */
.custom-map-controls,
.control-group,
.btn-leaflet,
.leaflet-draw-submenu,
.leaflet-measure-submenu,

#editModeToast {
  display: none !important;
}