/* Custom task status badge overrides - use readable dark text with soft background colors */
.badge {
  color: #000 !important;
  font-weight: 600;
}

.badge-secondary {
  background-color: #e5e7eb !important; /* gray-200 */
  color: #000 !important;
}

.badge-primary {
  background-color: #bfdbfe !important; /* blue-200 */
  color: #000 !important;
}

.badge-success {
  background-color: #bbf7d0 !important; /* green-200 */
  color: #000 !important;
}

.badge-danger {
  background-color: #fecaca !important; /* red-200 */
  color: #000 !important;
}

.badge-warning {
  background-color: #fde68a !important; /* amber-200 */
  color: #000 !important;
}

/* Add a consistent padding and border radius for prominence */
.badge {
  padding: 0.35rem 0.6rem !important;
  border-radius: 0.5rem !important;
}
