/* ── DASHBOARD SCREEN ── */
#s-dash {
  flex-direction: column
}

#dash-outer {
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 11px
}

#dash-hdr {
  background: var(--bg-warm);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--brand-mid);
  flex-shrink: 0
}

#dash-hdr-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-deep)
}

#dash-hdr .pill {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: rgba(30, 30, 40, .6);
  background: rgba(30, 30, 40, .04);
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(30, 30, 40, .12);
  letter-spacing: .04em
}

#dash-src-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: rgba(30, 30, 40, .55);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: .04em;
  transition: all .15s
}

#dash-src-btn:hover {
  color: #1a1a22;
  background: rgba(30, 30, 40, .05)
}
