/* The strip across the top of the 3D view while the bed origin is being picked.
   The buttons that start picking are in the machine setup dialog, which covers
   the view the operator now has to click on - so the dialog steps aside and what
   to click next is said here, over the model itself. */

.pick-strip {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: min(760px, calc(100% - 32px));
    padding: 10px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.pick-strip-prompt {
    color: var(--text-primary);
    font-size: 13px;
    line-height: 1.4;
}

.pick-strip .btn-measure {
    flex-shrink: 0;
    white-space: nowrap;
}
