
/* ===== Кнопки зума ===== */
.custom-zoom-controls {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.custom-zoom-controls button {
  width: 40px;
  height: 40px;
  border: none;
  background: white;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  transition: box-shadow 0.25s ease, background-color 0.2s ease;
  user-select: none;
  border-radius: 0;
}

.custom-zoom-controls button:active {
  background-color: #eef6ff;
  box-shadow:
    inset 0 -2px 0 #2688eb,
    0 0 0 2px rgba(38, 136, 235, 0.5);
}

#zoomIn {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
#zoomOut {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

[class*="gototech"] {
  display: none !important;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  background-color: #f9f9f9;
}



#map {
  max-width: 100%;
  height: 100%;
  border-radius: inherit;
}
