.updated-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid #f3a7a7;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  color: #9f1d1d;
  background: #fff1f1;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.28);
  animation: updated-pulse 1.8s ease-out infinite;
}

@keyframes updated-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.32);
  }

  72% {
    box-shadow: 0 0 0 8px rgba(220, 38, 38, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .updated-badge {
    animation: none;
  }
}
