/* --- Selection Tray -------------------------------------------------------- */

#tray {
  position: fixed;
  left: 50%;
  transform: translate(-50%, 130%);
  bottom: 20px;
  z-index: 50;
  background: var(--text);
  color: var(--surface);
  border-radius: 999px;
  padding: 10px 10px 10px 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow-pop);
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1);
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 600;
}

#tray.show { transform: translate(-50%, 0); }
#tray .n { font-weight: 800; }

#tray .go {
  background: var(--accent);
  color: var(--accent-contrast);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  transition: background-color 0.15s ease;
}

#tray .go:hover { background: var(--accent-hover); }
#tray .clear { color: var(--text-muted); font-size: 13px; font-weight: 600; }
#tray .clear:hover { color: var(--text); }

