.layer-control {
  background: white;
  padding: 8px;
  /* max-height: unset !important;
        overflow-y: unset !important; */


  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.layer-title {
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 5px;
}

.layer-item {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  cursor: pointer;
}

.bullet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 6px;
  flex-shrink: 0;
  opacity: 0.4;
  border: 2px solid transparent;
  transition: 0.2s;
}

.layer-item.active .bullet {
  opacity: 1;
  border-color: #333;
}

.layer-item.active label {
  font-weight: bold;
  text-decoration: underline;
}



.pin-card {
  width: 280px;
  max-width: 86vw;
  font-family: inherit;
}

.pin-card .pin-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  background: #f2f2f2;
}

.pin-card h4 {
  margin: 8px 0 6px;
  font-size: 16px;
  line-height: 1.25;
}

.pin-card .pin-meta {
  color: #666;
  font-size: 12px;
  margin-bottom: 8px;
}

.pin-card .pin-actions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.pin-card .btn {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  text-decoration: none;
}

.pin-card .btn.primary {
  background: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}


#mapOverlay {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  max-height: 550px;
  overflow-x: auto;
  /* overflow-y: hidden; */
  overscroll-behavior: contain;
  touch-action: pan-y;
}


.cesium-infoBox-camera {
  display: none !important;

}