.en-tts-player {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: #4f5052;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  margin-bottom: 15px;
}

.en-tts-play {
  font-size: 20px;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.en-tts-info {
  flex: 1 1 200px;
  min-width: 200px;
}

.en-tts-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.en-tts-current {
    font-weight: 600;
    color: #fff;
    
}

.en-tts-sub {
  font-size: 12px;
  color: #fff;
}

.en-tts-timeline {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 6px;
  font-size: 12px;
}

.en-tts-speed {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 10px;
  background: #4f5052;
  border-radius: 6px;
  user-select: none;
  color:white;
  filter: brightness(0.8);
}

.en-tts-speed:hover,
.en-tts-speed:focus {
    background: #646464;
    outline: none;
    border: 1px solid #fff;
}

.en-tts-play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: #4f5052;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease
  filter: brightness(0.8);
}

.en-tts-play:hover,
.en-tts-play:focus {
  background-color: #646464;
  border: 1px solid #fff;
  outline: none;
}

.en-tts-play svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  width: 50px;
  height: 50px;
  margin-left: 4px;
  bottom: 5px;
}

.en-tts-status {
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
  color: #fff;
}
.en-tts-status.paused {
  color: #fff;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .en-tts-title { font-size: 15px; }
  .en-tts-play { width: 40px; height: 40px; }
  .en-tts-info { flex: 1 1 180px; min-width: 180px; }
}