/*
 * BA history — cross-browser alignment for bookmaker + bankroll identity.
 *
 * Chrome could lay the two badges out on separate rows when the title column
 * became tight. An inline grid gives the identity group two intrinsic columns
 * and prevents either badge from wrapping or shrinking independently.
 */
#picksAccordion .bk-pick-ba-identities {
  display: inline-grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: max-content !important;
  align-items: center !important;
  column-gap: 6px !important;
  flex: 0 0 auto !important;
  width: max-content !important;
  max-width: none !important;
  min-width: max-content !important;
  white-space: nowrap !important;
  vertical-align: middle;
}

#picksAccordion .bk-pick-ba-identities > .badge,
#picksAccordion .bk-pick-ba-identities > .bk-bookmaker-slot {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  white-space: nowrap !important;
  vertical-align: middle;
}

/* Keep the match title as the only flexible/truncatable item in the row. */
#picksAccordion .bk-pick-main > .bk-pick-title-v2 {
  min-width: 0 !important;
  flex: 1 1 auto !important;
}
