body {
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: safe center;
  align-items: safe center;
  align-content: safe center;
}

.card.draggable {
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  flex-direction: column;
  gap: 8px;
  width: 120px;
  height: 120px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;

  /* Prevent touch scrolling - REQUIRED for touch dragging */
  touch-action: none;

  /* Prevent tap highlight on mobile */
  -webkit-tap-highlight-color: transparent;

  /* Prevent long-press context menu on mobile */
  -webkit-touch-callout: none;

  & svg {
    width: 2em;
    height: 2em;
  }

  & span {
    color: inherit;
  }
}
