/* 공통 스타일 보강 (Tailwind 유틸리티 위주로 사용하고, 여기는 최소 보강만) */
body { font-family: -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif; }

.tab-btn.active {
  border-bottom: 2px solid #4f46e5;
  color: #4f46e5;
  font-weight: 600;
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
}

.risk-high { background: #fee2e2; color: #b91c1c; }
.risk-medium { background: #fef3c7; color: #b45309; }
.risk-low { background: #dbeafe; color: #1d4ed8; }
.risk-pass { background: #dcfce7; color: #15803d; }

.spinner {
  border: 3px solid #e5e7eb;
  border-top: 3px solid #4f46e5;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.checklist-item { display: flex; align-items: center; gap: 6px; padding: 2px 0; }
