/* Status badge - Live, Next and Replay */

.status-badge {
  font-size: var(--status-badge-font-size);
  background: var(--status-badge-background-color);
  color: var(--status-badge-text-color);
  font-family: var(--status-badge-font-family);
  font-weight: var(--status-badge-font-weight);
  letter-spacing: var(--status-badge-letter-spacing);
  border-radius: var(--status-badge-border-radius);
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--theme-light-color);
}

.status-badge:hover {
  opacity: 0.9;
}
