@charset "UTF-8";

.uc-visually-hidden,
.uc-list-places {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.uc-plan #map {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  height: 700px;
  margin: 0 auto;
  background: #343434;
  border: 1px solid;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  overflow: hidden;
}

.uc-plan svg {
  overflow: visible;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: block;
  touch-action: none;
  cursor: grab;
}

.uc-plan #inner {
  transform-origin: 0 0;
  transition: none;
}

.uc-plan {
  /* Контейнер для кнопок */
}

.uc-plan #controls {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uc-plan #controls button {
  background: white;
  border: 1px solid #888;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: background-color 0.2s;
}

.uc-plan #controls button:hover {
  background-color: #eee;
}

.uc-plan #controls button:active {
  background-color: #ccc;
}

.uc-plan [id^=place] {
  transition: fill 0.25s ease, stroke 0.25s ease, stroke-width 0.25s ease;
}

.uc-plan {
  /* Tooltip стиль */
}

.uc-plan .svg-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 13px;
  pointer-events: none;
  z-index: 9999;
  white-space: nowrap;
}

.uc-plan {
  /* Кнопка Забронировать */
}

#lunacode_reserve_btn_wrap {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

#reserveBtn {
  padding: 10px 16px;
  font-size: 16px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#reserveBtn.active {
  background-color: #d32f2f;
}

#reserveBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}