.audio-reader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f7ff;
  border: 1px solid #00aeff;
  border-radius: 50px;
  padding: 6px 14px 6px 8px;
  font-family: sans-serif;
  font-size: 13px;
  user-select: none;
  flex-wrap: wrap;
  margin-bottom: 24px;
  max-width: 580px;
}

/* Hide voice on mobile, keep speed */
@media (max-width: 600px) {
  .ar-voice {
    display: none !important;
  }
  .audio-reader {
    font-size: 12px;
    padding: 5px 12px 5px 6px;
    gap: 6px;
  }
  .audio-reader button {
    width: 32px;
    height: 32px;
  }
  .ar-label {
    font-size: 12px;
  }
}

.audio-reader button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  flex-shrink: 0;
}
.audio-reader button:active { transform: scale(0.93); }

#ar-play-btn       { background: #e52293; }
#ar-play-btn:hover { background: #c91d80; }

#ar-stop-btn       { background: #e8f7ff; border: 1px solid #00aeff; }
#ar-stop-btn:hover { background: #cceeff; }
#ar-stop-btn:disabled { opacity: 0.4; cursor: default; }

.ar-label  { color: #00aeff; font-weight: 600; white-space: nowrap; }
.ar-status { color: #00aeff; font-size: 11px; font-weight: 600; white-space: nowrap; }

.ar-speed, .ar-voice {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #00aeff;
  font-size: 13px;
  font-weight: 600;
}
.ar-speed select, .ar-voice select {
  border: 1.5px solid #00aeff;
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 13px;
  font-weight: 600;
  background: #e8f7ff;
  cursor: pointer;
  color: #00aeff;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  text-align: center;
}
.ar-speed select:hover, .ar-voice select:hover {
  background: #cceeff;
}

.ar-progress-wrap {
  display: none;
}
#ar-progress {
  display: none;
}
