/*! Version26.04.26 -  Pulsierender Button */
.pulse-button {
  align-self: center;
  background-color: #222;
  color: white;
  padding: 8px 28px;
  border: 1px solid #ff8800;
  border-radius: 10px;
  animation: pulse 1.5s infinite;
  word-wrap: break-word;
}

a.pulse-button { color: white; font-weight: 700; }

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 51, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 51, 102, 0); }
}