/**
 * [ARTNET 지도 컨트롤]
 * - 역할: 우하단 세로 스택 (줌 → 지도|스카이뷰)
 * - 작성/수정일: 2026-08-09
 */
.an-map-ctrls {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
}

.an-map-ctrls__zoom,
.an-map-ctrls__type {
  pointer-events: auto;
  background: var(--white-color, #fff);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.an-map-ctrls__zoom {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 36px;
  padding: 2px 0;
}

.an-map-ctrls__zoom-btn {
  width: 36px;
  height: 32px;
  border: 0;
  background: transparent;
  font-size: var(--fs-h6, 18px);
  line-height: 1;
  color: var(--title-color, #171717);
  cursor: pointer;
}

.an-map-ctrls__zoom-btn:hover {
  background: var(--bg-soft, #f6f6f6);
}

.an-map-ctrls__track {
  position: relative;
  width: 4px;
  height: 72px;
  margin: 4px 0;
  background: var(--line-color, #e5e5e5);
  border-radius: 2px;
  cursor: pointer;
}

.an-map-ctrls__thumb {
  position: absolute;
  left: 50%;
  top: 0;
  width: 14px;
  height: 6px;
  margin-left: -7px;
  margin-top: -3px;
  background: #4a8cf7;
  border-radius: 1px;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.an-map-ctrls__type {
  display: inline-flex;
  overflow: hidden;
}

.an-map-ctrls__type-btn {
  border: 0;
  background: var(--white-color, #fff);
  padding: 8px 12px;
  font-size: var(--fs-caption, 12px);
  font-weight: 700;
  color: var(--title-color, #171717);
  cursor: pointer;
  white-space: nowrap;
}

.an-map-ctrls__type-btn + .an-map-ctrls__type-btn {
  border-left: 1px solid #e5e5e5;
}

.an-map-ctrls__type-btn.is-active {
  background: #4a8cf7;
  color: var(--on-dark, #fff);
}

.an-map-ctrls__type-btn:not(.is-active):hover {
  background: var(--bg-soft, #f6f6f6);
}
