/* Global badge utilities for LivingCluster */

/* Utility: keep badge text on one line within its container */
.one-line-badge {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  /* Enable proper truncation inside flex/inline-flex contexts */
  min-width: 0;
}

/* Override default .badge to be single-line and prevent wrapping */
.badge {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  min-width: 0;
}