
/* BravesTickets Live Activity Feed */

.bt-live-activity-card {
  overflow: hidden;
}

.bt-live-activity-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.bt-live-activity-header h2 {
  margin: 0 0 4px;
}

.bt-live-activity-header p {
  margin: 0;
  color: #cbd5e1;
}

.bt-live-dot {
  width: 13px;
  height: 13px;
  margin-top: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: btLivePulse 1.7s infinite;
}

@keyframes btLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  70% { box-shadow: 0 0 0 9px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.bt-live-activity-feed {
  display: grid;
  gap: 10px;
  max-height: 430px;
  overflow: auto;
  padding-right: 4px;
}

.bt-live-activity-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(245,197,66,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}

.bt-live-activity-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,197,66,.14);
  color: #f5c542;
  font-size: 1.6rem;
  line-height: 1;
}

.bt-live-activity-body {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.bt-live-activity-body strong {
  color: #f8fafc;
  font-weight: 850;
  word-break: break-word;
}

.bt-live-activity-body span {
  color: #cbd5e1;
  font-size: .9rem;
}

.bt-live-activity-empty,
.bt-live-activity-loading {
  padding: 16px;
  border: 1px dashed rgba(245,197,66,.22);
  border-radius: 16px;
  color: #cbd5e1;
  text-align: center;
}
