/* Camera controls — bottom-right cluster.
   Per Figma 1802:99 + 1813:249, the on-screen camera affordances are
   two pairs of square buttons sitting at the bottom-right of the
   viewport: rotate (left + right) and zoom (in + out). Replaces the
   previous up/down/left/right d-pad whose chevron arrows mixed rotate
   (left/right) with zoom (up/down).

   Bottom-right placement clears the bottom-left restart pill — the
   two clusters used to compete for the same column. */
#camera-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
}

.cam-group {
    display: flex;
    gap: 4px;
}

.cam-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--color-surface);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-md, 6px);
    box-shadow: 2px 2px 0 rgba(26, 26, 26, 0.18);
    color: var(--color-text);
    cursor: pointer;
    padding: 0;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    transition: background var(--transition-fast);
}

.cam-btn:hover {
    background: var(--color-surface-hover);
}

.cam-btn:active,
.cam-btn.cam-btn--active {
    background: var(--color-surface-hover);
    box-shadow: none;
    transform: translate(1px, 1px);
}

.cam-btn svg {
    width: 16px;
    height: 16px;
}
