body {
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
  background: #fff;
  color: #000;
  margin: 2rem;
  line-height: 1.5;
}

.title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.quote {
  border: 1px solid #000;
  padding: 10px;
  max-width: 978px;
  margin: 1rem 0;
}

.quote-ar {
  white-space: pre-line;
  direction: rtl;
  text-align: right;
}

img {
  max-width: 1000px;
  width: 100%;
  height: auto;
  display: block;
  margin: 1rem 0;
}

a {
  color: #000;
  text-decoration: underline;
}

.audio-block {
  border: 1px solid #000;
  padding: 10px;
  max-width: 978px;
  margin: 1rem 0;
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.audio-controls button {
  background: #fff;
  color: #000;
  border: 1px solid #000;
  padding: 4px 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 13px;
  cursor: pointer;
}

/* Progress bar for multiple audios */
.progress {
  flex: 1;
  height: 6px;
  background: #ccc;
  cursor: pointer;
  position: relative;
  /* flat edges, no border-radius */
}

.progressFill {
  height: 100%;
  width: 0%;
  background: #000;
  /* flat edges, no border-radius */
}

.audio-info {
  font-size: 13px;
  line-height: 1.4;
}

/* Volume slider */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: #ccc;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: #ccc;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: #333;
  border: none;
  margin-top: -3px;
  cursor: pointer;
}

input[type="range"]::-moz-range-track {
  background: #ccc;
  height: 6px;
}

input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #333;
  border: none;
}