/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* DaisyUI badges have a fixed height by default, so multi-word status labels
 * like "Pending Payment" or "Ready for your approval" visibly clipped or
 * overflowed the pill. Letting the badge grow to fit content — while keeping
 * the default height as a min-height so single-word pills still look right —
 * fixes every status badge without having to sprinkle utilities view by view. */
.badge {
  height: auto;
  min-height: 1.25rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  white-space: nowrap;
}
.badge.badge-sm { min-height: 1rem; }
.badge.badge-lg { min-height: 1.5rem; }
