/* Badge Styles */
.badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 12px;
  min-width: 60px;
  text-align: center;
}

.badge-active {
  background-color: #d4edda;
  color: #155724;
}

.badge-inactive {
  background-color: #f8d7da;
  color: #721c24;
}

.badge-admin {
  background-color: #d1ecf1;
  color: #0c5460;
}

.badge-user {
  background-color: #fff3cd;
  color: #856404;
}

.badge-isd {
  background-color: #e7f3ff;
  color: #004085;
}

.badge-lea {
  background-color: #f0e8ff;
  color: #5a1e8c;
}

.badge-other {
  background-color: #f5f5f5;
  color: #495057;
}

.badge-success {
  background-color: #d4edda;
  color: #155724;
  margin-right: 4px;
  margin-bottom: 4px;
}

.badge-info {
  background-color: #d1ecf1;
  color: #0c5460;
}

.badge-warning {
  background-color: #fff3cd;
  color: #856404;
}

.badge-secondary {
  background-color: #e2e3e5;
  color: #383d41;
}

.badge-truncate {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}

.badge-left-align {
  text-align: left;
}

/* Small meta label used above values (e.g., "Industry", "Address") */
.meta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6c757d;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

/* Inline pill / chip used for pathway tags */
.chip {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 999px;
  background: #f8fbff;
  color: #2b6cb0;
  border: 1px solid #cde3ff;
  margin: 4px 6px 4px 0;
}

.chip--small {
  padding: 4px 8px;
  font-size: 11px;
}