#balele-wall-app {
  position: relative;
  min-height: 100vh;
  background: #e9edf5;
  overflow: hidden;
}

.balele-wall-viewport {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}

.balele-wall-viewport:active {
  cursor: grabbing;
}

.balele-wall-grid,
.balele-wall-inner {
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: 0 0;
}

.balele-wall-grid {
  background-image:
    linear-gradient(to right, rgba(80, 100, 140, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(80, 100, 140, 0.12) 1px, transparent 1px);
  pointer-events: none;
}

.balele-pin {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 0;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(39, 52, 86, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  cursor: pointer;
  animation: baleleFloat 4.8s ease-in-out infinite;
}

.balele-pin img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.balele-pin.is-dragging {
  z-index: 20;
  animation: none;
  cursor: grabbing;
}

.balele-wall-toolbar {
  position: absolute;
  z-index: 30;
  top: 18px;
  right: 18px;
  display: flex;
  gap: 8px;
}

.balele-wall-toolbar__button {
  border: 0;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  cursor: pointer;
}

.balele-wall-loading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

@keyframes baleleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}
