@charset "UTF-8";
/* Контейнер для кнопок */
.audio-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  direction: ltr;
  justify-content: center;
  /* Общие стили для всех кнопок */
  /* Кнопка Играть (Зеленая) */
  /* Кнопка Пауза (Оранжевая) */
  /* Кнопка Стоп (Красная) */
  /* Эффект нажатия (для всех) */
  /* Стиль для отключенных кнопок (disabled) */
  /* Стили для карточек (чтобы сочетались с кнопками) */
}
.audio-controls .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: white;
  min-width: 120px;
}
.audio-controls .btn-play {
  background-color: #2ecc71;
  box-shadow: 0 4px 0 #27ae60;
}
.audio-controls .btn-play:hover:not(:disabled) {
  background-color: #27ae60;
  transform: translateY(-1px);
}
.audio-controls .btn-pause {
  background-color: #f39c12;
  box-shadow: 0 4px 0 #d35400;
}
.audio-controls .btn-pause:hover:not(:disabled) {
  background-color: #e67e22;
  transform: translateY(-1px);
}
.audio-controls .btn-stop {
  background-color: #e74c3c;
  box-shadow: 0 4px 0 #c0392b;
}
.audio-controls .btn-stop:hover:not(:disabled) {
  background-color: #c0392b;
  transform: translateY(-1px);
}
.audio-controls .btn:active:not(:disabled) {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}
.audio-controls .btn:disabled {
  background-color: #bdc3c7 !important;
  box-shadow: 0 4px 0 #95a5a6 !important;
  cursor: not-allowed;
  opacity: 0.7;
  transform: none !important;
}
.audio-controls .sound-card {
  border: 2px solid transparent;
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 10px;
}
.audio-controls .sound-card.active {
  border-color: #2ecc71;
  background-color: #f0fff4;
  transform: translateX(10px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
}
.audio-controls .repeat {
  margin-top: 10px;
  font-size: 18px;
}
.audio-controls label {
  padding-top: 10px;
}
.audio-controls #repeat-select {
  width: 80px;
  height: 23px;
}/*# sourceMappingURL=audio-btns.css.map */