#map {
    height: 90vh; width:96vw;
    margin-left: 2%;
    margin-bottom: 25px;
}

#draw-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 2px solid #333;
    padding: 20px;
    z-index: 1000;
    display: none;
  }

#draw-modal canvas {
    border: 1px solid #ccc;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    display: none;
}

.custom-icon {
    pointer-events: auto !important;
    cursor: crosshair;
  }

/*.leaflet-marker-icon.custom-icon.leaflet-zoom-hide.leaflet-interactive {
  transform: none !important;
}*/