/* ── CLIENT SELECT MODE ── */
.client-sel-check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--bd);
  background: var(--card);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .12s;
  pointer-events: none
}

.client-tile.cl-selected .client-sel-check {
  background: var(--ink);
  border-color: var(--ink)
}

.client-tile.cl-selected .client-sel-check::after {
  content: '✓';
  color: #fff;
  font-size: 10px;
  line-height: 1
}

.client-tile.cl-selected {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px rgba(30, 30, 40, .12)
}

#clients-sel-bar {
  display: none;
  align-items: center;
  gap: 8px
}

#clients-sel-bar.on {
  display: flex
}

#clients-sel-count {
  font-size: 11px;
  color: var(--light);
  min-width: 70px
}
