/* 自定义徽章样式，确保文本在各种背景色上可见 */
.badge-primary {
  background-color: #4e73df !important;
  color: #fff !important;
}
.badge-secondary {
  background-color: #858796 !important;
  color: #fff !important;
}
.badge-success {
  background-color: #1cc88a !important;
  color: #fff !important;
}
.badge-danger {
  background-color: #e74a3b !important;
  color: #fff !important;
}
.badge-warning {
  background-color: #f6c23e !important;
  color: #212529 !important; /* 深色文字在浅色背景上 */
}
.badge-info {
  background-color: #36b9cc !important;
  color: #fff !important;
}
.badge-light {
  background-color: #f8f9fc !important;
  color: #212529 !important; /* 深色文字在浅色背景上 */
}
.badge-dark {
  background-color: #5a5c69 !important;
  color: #fff !important;
} 