/* Status Badge Component Styles */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

.status-badge.ready {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.status-badge.draft {
  background: rgba(100, 116, 139, 0.1);
  color: #475569;
}

.status-badge.warning {
  background: rgba(251, 146, 60, 0.1);
  color: #ea580c;
}

.status-badge.outdated {
  background: rgba(251, 146, 60, 0.1);
  color: #ea580c;
}

.status-badge.success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.status-badge.info {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.status-badge.danger {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

/* Larger status badges for headers */
.status-badge.large {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Status badge with icon */
.status-badge i {
  font-size: 1em;
}

/* Pulse animation for active/processing states */
.status-badge.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Status indicator dot */
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.status-dot.ready {
  background: #16a34a;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.status-dot.draft {
  background: #64748b;
  box-shadow: 0 0 0 2px rgba(100, 116, 139, 0.2);
}

.status-dot.warning {
  background: #ea580c;
  box-shadow: 0 0 0 2px rgba(251, 146, 60, 0.2);
}

.status-dot.danger {
  background: #dc2626;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}
