/* Perfect Dancer Styles - Based on working implementation */
.perfect-dancer-container {
  position: relative;
  width: 100%;
  height: 400px;
  background: white;
  overflow: visible;
}

.perfect-dancer {
  position: absolute;
  width: 280px;
  cursor: grab;
  user-select: none;
  pointer-events: auto;
  transform-origin: 50% 50%;
  z-index: 99999; /* Always stay on top of all content */
}

.perfect-dancer:active {
  cursor: grabbing;
  z-index: 100000; /* Even higher when dragging */
}
