.tolk-audio-player {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid #686B74;
  border-radius: 10px;
  padding: 4px 8px;
  width: 240px;
  height: 30px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  overflow: hidden;
}

.tolk-audio-player:hover {
  border-color: #FA5E36;
}

.tolk-audio-player .tolk-btn-play {
  background: none;
  border: none;
  color: #686B74;
  font-size: 16px;
  cursor: pointer;
  margin-right: 6px;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.tolk-audio-player:hover .tolk-btn-play {
  color: #FA5E36;
}

.tolk-audio-player input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  flex: 1 1 auto;
  min-width: 0;
  height: 4px;
  background: #686B74;
  border-radius: 2px;
  margin-right: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tolk-audio-player:hover input[type=range] {
  background: #FA5E36;
}

.tolk-audio-player input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  background: #fff;
  border: 1px solid #686B74;
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.tolk-audio-player:hover input[type=range]::-webkit-slider-thumb {
  border-color: #FA5E36;
}

.tolk-audio-player .tolk-time {
  font-family: "Pragmatic", sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #686B74;
  min-width: 32px;
  text-align: right;
  flex-shrink: 0;
}

/* 📱 Адаптация под мобильные */
@media (max-width: 600px) {
  .tolk-audio-player {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 3px 6px;
  }

  .tolk-audio-player .tolk-btn-play {
    font-size: 14px;
    margin-right: 4px;
  }

  .tolk-audio-player input[type=range] {
    height: 3px;
  }

  .tolk-audio-player input[type=range]::-webkit-slider-thumb {
    width: 8px;
    height: 8px;
    margin-top: -2px;
  }

  .tolk-audio-player .tolk-time {
    font-size: 12px;
  }
}
