/* Soft Badge Overrides — loaded after kaiadmin.min.css */

.badge {
  border: none !important;
  font-weight: 500 !important;
}

/* Bootstrap bg-* pattern */
.badge.bg-primary {
  background-color: rgba(21, 114, 232, 0.15) !important;
  color: #1572E8 !important;
}
.badge.bg-secondary {
  background-color: rgba(104, 97, 206, 0.15) !important;
  color: #5a54b8 !important;
}
.badge.bg-info {
  background-color: rgba(72, 171, 247, 0.15) !important;
  color: #2e86c9 !important;
}
.badge.bg-success {
  background-color: rgba(49, 206, 54, 0.15) !important;
  color: #24a528 !important;
}
.badge.bg-warning {
  background-color: rgba(255, 173, 70, 0.15) !important;
  color: #c08000 !important;
}
.badge.bg-danger {
  background-color: rgba(242, 89, 97, 0.15) !important;
  color: #d63840 !important;
}

/* KaiAdmin badge-* pattern (same colors, duplicated selectors) */
.badge.badge-primary   { background-color: rgba(21, 114, 232, 0.15) !important; color: #1572E8 !important; }
.badge.badge-secondary { background-color: rgba(104, 97, 206, 0.15) !important; color: #5a54b8 !important; }
.badge.badge-info      { background-color: rgba(72, 171, 247, 0.15) !important; color: #2e86c9 !important; }
.badge.badge-success   { background-color: rgba(49, 206, 54, 0.15) !important; color: #24a528 !important; }
.badge.badge-warning   { background-color: rgba(255, 173, 70, 0.15) !important; color: #c08000 !important; }
.badge.badge-danger    { background-color: rgba(242, 89, 97, 0.15) !important; color: #d63840 !important; }

/* Override text-dark / text-white on badges */
.badge.bg-warning.text-dark { color: #c08000 !important; }
.badge.bg-danger.text-white { color: #d63840 !important; }

/* bg-light badges (keyboard shortcuts) — keep as-is, restore border */
.badge.bg-light {
  border: 1px solid #e0e0e0 !important;
}

/* Unify table header padding with body cells */
.table thead th {
  padding: 10px 16px !important;
}
