.mhd-marker-icon {
  width: 36px;
  height: 36px;
  background: #ffffff; 
  border: 3px solid #ee0000;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}


.mhd-symbol {
  font-size: 18px;
  line-height: 1;
  color: #ee0000;
}


.mhd-marker:hover .mhd-marker-icon {
  background: #ffeca1;
  border-color: #ffcd00;
  transform: translateY(-4px) scale(1.05);
}

.mhd-marker:hover .mhd-symbol {
  color: #000000; 
}
.map-close-btn{
	position: absolute;
      top: 12px;
      right: 12px;
      z-index: 1000;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: none;
      background: white !important;
      color: black !important;
      display: flex;
      align-content: center;
      justify-content: center;
      cursor: pointer !important;
	  align-items: center;
}

@keyframes markerPop {
  0% {
    transform: translateY(20px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(-10px) scale(1);
    opacity: 1;
  }
}

.custom-marker {
  z-index: 1000 !important;
}


.user-location-icon .pulse-marker {
  width: 20px;
  height: 20px;
  background: #00b341;
  border-radius: 50%;
  position: relative;
}



.map-container {
  position: relative;
  width: 100%;
  height: 80vh;
  min-width: 250px;
  min-height: 300px;
  max-height: 500px;
}

.map-container.hidden-map,
.map-container.hidden {
  display: none !important;
}

.map-container:not(.hidden):not(.hidden-map) {
  display: block;
}

.map-container:not(.hidden-map) #map {
  width: 100% !important;
  height: 100% !important;
}



.info-box {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  font-size: 14px;
  padding: 10px 15px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 60%;
  min-width: 200px;
  max-height: 40%;
  overflow: hidden;
  text-align: center;
}

.info-box strong {
  font-size: 16px;
  color: #333;
  display: block;
  margin-bottom: 8px;
}

.info-box .lines {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 6px;
  margin-bottom: 10px;
  padding: 0 5px;
  width: 100%;
  box-sizing: border-box;
}

.info-box .line-badge {
  background-color: #eee;
  color: #333;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.info-box button {
  background-color: #ee0000;
  color: #fff;
  border: none;
  border-radius: 13px;
  padding: 8px 12px;
  width: 90%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.info-box button:hover {
  background-color: #810000;
  border-radius: 13px;
}
.marker-hidden {
  display: none !important;
}


@media screen and (min-width: 1100px) {
  .info-box {
    max-width: 20%;
  }
  .map-container {
    width: 100%;
    max-height: 100%;
  }
}
