/* .custom-html-marker {
  pointer-events: auto;
}

.marker-label {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #aaa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.2;
}

.marker-place {
  font-weight: bold;
  color: #2c3e50;
}

.marker-descr {
  color: #555;
}

.leaflet-div-icon {
    background: none;
    border: none;
}
 */

.custom-marker {
  background: none;          /* prevent Leaflet from injecting default styles */
  border: none;
}

.custom-marker .marker-inner {
  background: white;
  /*border: 2px solid #2c3e50;*/ /* adjust color */
  border-radius: 12px;
  padding: 6px 8px;
  text-align: center;
  /* box-shadow: 0 3px 10px rgba(0,0,0,0.35); */
  box-shadow: 0 6px 10px rgba(0,0,0,1.35);

  /* Optional: pointer tip triangle */
  position: relative;
}

.custom-marker .marker-inner:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid white;     /* same as background */
}

.custom-marker i {
  /* display: block; */
  margin-bottom: 4px;
}
