/* LIVE tečka */
.pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ff0000;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff0000;
  border-radius: 50%;
  z-index: -1;
  /* Animace pulsní vlny */
  animation: pulse 2s infinite;
}

.live-wrapper {
  margin-left: 6px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.status-dot.online {
  background-color: #00ff4c;
  box-shadow: 0 0 8px #00ff4c;
}

.status-dot.offline {
  background-color: #606060;
  box-shadow: 0 0 8px #606060;
}

/* Animace blikání */
.status-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse 1.5s infinite ease-in-out;
  will-change: transform, opacity;
}

.status-dot.online::after {
  background-color: #00ff4c;
}

.status-dot.offline::after {
  background-color: #606060;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(3);
    opacity: 0;
  }
}