/* ----------------------------------------------------------------------------
   chat-rail.css — The chat context rail — the date/time/location/library box floated into
   the right gutter, and its privacy note.
   Slice 15 of 16 (see css/tokens.css for the full load order).
   ------------------------------------------------------------------------- */
/* ------------------------------------------------------------ Chat Rail Privacy Box */
.rail-privacy-box {
  margin-top: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rail-privacy-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 650;
  color: var(--ok-text);
}

.rail-privacy-head svg {
  color: var(--ok-text);
  flex-shrink: 0;
}

.rail-privacy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rail-privacy-list li {
  font-size: 11px;
  line-height: 1.4;
  color: var(--muted);
}

.rail-privacy-list li strong {
  color: var(--text);
  font-weight: 600;
}
/* ============================================================ company vault
   Read-only "Company files" section in the Library, the segmented chat file
   picker headers, and the ADMIN tab. Kept visually quieter than the personal
   tree — no selection, no drag affordances. */

.company-lib {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.company-lib-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.company-lib-head h2 {
  font-size: 16px;
  margin: 0;
}

.company-lib-head .company-lib-sub {
  flex: 1;
}

/* chat picker segment headers (only rendered when company files exist) */
.files-section-head {
  padding: 10px 10px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

