/**
 * Panel-left bottom zone — ambient action strip.
 *
 * Phase 4: clipboard tray only. Future phases populate the rest (Add Section
 * CTA, ⌘K hint, collapse toggle).
 */

.pb-pbz {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--pb-panel-divider);
}

/* ── Clipboard tray ── */
.pb-pbz-clipboard {
  display: flex;
  align-items: center;
  gap: var(--pb-space-3);
  padding: var(--pb-space-3) var(--pb-space-5);
  background: var(--pb-accent-tint);
}

.pb-pbz-clipboard[hidden] { display: none; }

.pb-pbz-clipboard-slot {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
}

/* The chip itself reuses the existing .pb-sl-clipboard-chip class so it
   inherits the same visual styling already defined in section-list.css.
   The pb-pbz-* class names are anchors for any future tray-specific tweaks. */
