/* Arbah v3 — PunchList surface supplements.
 *
 * Small additive rules for the PunchList v3 surface (no v3 mockup exists;
 * the layout is assembled from the shipped v3 primitives in
 * arbah-v3-primitives.css). Everything here is scoped under `.av3` so it
 * cannot leak into the legacy / v2 themes. These cover only what the
 * primitives can't express: the bulk select-all label in the toolbar, the
 * row-leading checkbox cell, and the secondary "tag" line under the item
 * title (client-visible / reopened / photo / date). RTL mirrors via
 * `[dir="rtl"] .av3 …`. Token-only colors — no hard-coded hexes.
 */

/* Select-all label sitting opposite the status tabs in the toolbar. */
.av3 .av3-selall {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--arbah-ink-muted);
  white-space: nowrap;
  cursor: pointer;
}
.av3 .av3-selall input { accent-color: var(--arbah-navy-500); }

/* Leading checkbox cell in the data table — tight, top-aligned. */
.av3 .dtable th.av3-pl-check,
.av3 .dtable td.av3-pl-check {
  width: 36px;
  padding-inline-end: 0;
  text-align: center;
}
.av3 .av3-pl-check input { accent-color: var(--arbah-navy-500); cursor: pointer; }

/* Secondary meta line under the item title: client-visible / reopened /
   photo presence / created date. Calm, mono, muted. */
.av3 .av3-pl-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 5px;
}
.av3 .av3-pl-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--arbah-ink-subtle);
  background: var(--arbah-surface-sunken);
  border: 1px solid var(--arbah-border);
  border-radius: 999px;
  padding: 2px 7px;
  white-space: nowrap;
}
.av3 .av3-pl-date {
  font-size: 11px;
  color: var(--arbah-ink-subtle);
}
