@charset "UTF-8";
#footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.tc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1500px;
  margin: 0 auto;
  padding: .6rem 1.25rem;
  font-size: .8rem;
  color: var(--text-muted);
}
.tc-footer__left {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.tc-footer__sep {
  color: var(--text-muted);
}
.tc-footer__badge {
  padding: .05rem .4rem;
  border-radius: 999px;
  background: hsl(var(--warning) / 18%);
  color: hsl(var(--warning));
  font-weight: 600;
}
.tc-status {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.tc-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}
.tc-status[data-state="online"] .tc-status__dot {
  background: hsl(var(--success));
}
.tc-status[data-state="connecting"] .tc-status__dot,
.tc-status[data-state="reconnecting"] .tc-status__dot {
  background: hsl(var(--warning));
  animation: tc-pulse 1.1s ease-in-out infinite;
}
.tc-status[data-state="offline"] .tc-status__dot {
  background: hsl(var(--error));
}
.tc-status[data-state="reconnecting"] .tc-status__text {
  color: hsl(var(--warning));
}
@keyframes tc-pulse {
  50% {
    opacity: .3;
  }
}
