.map-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.map-container iframe,
.map-container object,
.map-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.leaflet-popup-content-wrapper {
  background: rgb(29 22 61 / 95%);
  border-radius: 3px;
  border:1px solid;
  display: flex;
  
  width: calc(100vw - 25px);
}

.leaflet-popup-content {
  color: black;

  margin:1px;

  width: calc(100vw - 25px);

}


@media (max-width: 767px) {
    .leaflet-popup-content-wrapper {
        background: rgb(29 22 61 / 98%);
        border-radius: 3px;
        display: flex;
        width: calc(100vw - 35px);
        
      }
      
      .leaflet-popup-content {
        color: black;
      
        margin:1px;
      
        width: calc(100vw - 35px);
        
      
      }
  }

.leaflet-popup-tip {
  background: indigo;
}

.my-custom-tooltip {
  background: transparent;
  border: 1px solid green;
  padding: 1px;
  font-family: monospace;
  text-align: center;
  color: yellow;
  border-radius: 2px;
}

.dialog {
  min-width: 300px;
  width: 95%;
}

@media (min-width: 768px) {
  .dialog {
    width: 300px;
    height: 600px;
  }
}

.my-toast-modifier {
  background-color: red !important;
  color: white !important;
}

.toast_green {
  background-color: forestgreen;
}

.toast_red {
  background-color: orangered;
}

.toast_blue {
  background-color: royalblue;
}

.toast_dark {
  background-color: #202020;
}

.custom-toast2 {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #32363a;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  z-index: 1000;
  display: none;
}

.custom-toast {
  position: absolute;
  bottom: 10px;
  background-color: rgba(50, 54, 58, 1);
  color: #fff;
  font-size: 17px;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  animation: slide-up 0.3s ease-out;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  line-height: 1.5;
  border: 1px solid grey;
  border-radius: 3px;
}

.custom-toast-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.separator {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 1px 0;
}

.custom-toast .message::-webkit-scrollbar {
  width: 10px;
}

@keyframes slide-up {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}

*::-webkit-scrollbar {
  width: 5px;
}

*::-webkit-scrollbar-track {
  background-color: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: #ffc107;
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.selected {
  background-color: yellow;
}

.custom-popup {
  opacity: 0.8;
}

.ztextarea,
.zinput input[type=text] {
  color: yellow;
  font-family: monospace;
  font-size: 12px;
}

.ztextarea::placeholder {
  color: grey;
}
#listBox { 
	overflow-y:auto;
  height: 100%;
  width: 100%;
}
