.rack .tile {
  position: relative;
}

.tile-move-controls {
  position: absolute;
  left: 50%;
  bottom: -14px;
  display: flex;
  gap: 4px;
  transform: translateX(-50%);
  z-index: 5;
}

.tile-move {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(84, 54, 32, .3);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: #533620;
  font: 700 16px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-shadow: 0 2px 8px rgba(40, 24, 12, .18);
  touch-action: manipulation;
}

.tile-move:disabled {
  opacity: .35;
}

@media (hover: hover) and (pointer: fine) {
  .tile-move {
    width: 22px;
    height: 22px;
    font-size: 14px;
  }
}
