.cblt-map-wrapper {
  position: relative;
  width: 100%;
}

.cblt-map {
  width: 100%;
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
}

.cblt-map-status {
  display: inline-block;
  position: relative;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  opacity: 0.75;
  padding: 8px 12px;
  padding-left: 28px;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
}

.cblt-map-status:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #e2211c;
  width: 8px;
  height: 8px;
  border-radius: 100%;
}

.leaflet-popup-content {
  font-size: 14px;
  line-height: 1.4;
}

.cblt-stop-icon {
  width: 28px;
  height: 28px;
  background: transparent;
}

.cblt-stop-icon span {
  display: block;
  width: 28px;
  height: 28px;
  margin: 4px;
  background: #ffffff;
  border: 5px solid #e2211c;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
  transition: width .3s ease, height .3s ease;
}

.cblt-stop-icon:hover span {
  width: 27px;
  height: 27px; 
}

.cblt-bus-icon {
  background: transparent;
  border: none;
}

.cblt-bus-icon__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 32px;
  /* background: #ffffff; */
  /* border: 2px solid #ffffff; */
  border-radius: 50%;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28); */
  transform-origin: center;
}

.cblt-map-zoom-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 1000;
  transform: translateX(-50%);
  padding: 10px 14px;
  background: rgba(24, 24, 24, 0.82);
  color: #ffffff;
  font-size: 13px;
  line-height: 1.3;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cblt-map-zoom-hint.is-visible {
  opacity: 1;
}

.cblt-map-closed {
  min-height: 360px;
  width: 100%;
  padding: 32px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: #f2f2f2;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
}

.cblt-map-closed strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
  color: #333333;
}

.cblt-map-closed p {
  max-width: 520px;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #666666;
}
/* 
.cblt-map-closed + .cblt-map-status {
  display: none;
} */