/* === CAPTCHA Audio Buttons === */
.captcha-audio-controls {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  align-items: center;
}

/* General button look (keeps Drupal theme colors) */
.captcha-audio-controls .button {
  font-size: 0.9rem;
  padding: 0.35rem 0.8rem;
  border-radius: 0.4rem;
  cursor: pointer;
  line-height: 1.4;
}

/* Focus outline for accessibility */
.captcha-audio-controls .button:focus {
  outline: 3px solid #2684ff;
  outline-offset: 2px;
}

/* Small color hints to differentiate buttons */
.captcha-audio-play {
  background-color: #007bff;
  color: #fff;
}
.captcha-audio-play:hover,
.captcha-audio-play:focus {
  background-color: #0056b3;
}

.captcha-audio-replay {
  background-color: #6c757d;
  color: #fff;
}
.captcha-audio-replay:hover,
.captcha-audio-replay:focus {
  background-color: #545b62;
}

.captcha-audio-stop {
  background-color: #dc3545;
  color: #fff;
}
.captcha-audio-stop:hover,
.captcha-audio-stop:focus {
  background-color: #b02a37;
}
