@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.firefox-speech-btn {
  background: #00539f;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 18px;
  font-size: 1.1em;
  cursor: pointer;
  margin-bottom: 1em;
  transition: background 0.2s;
}
.firefox-speech-btn:hover {
  background: #0074d9;
}
.firefox-speech-wrapper {
  margin-bottom: 1.5em;
  padding: 0.5em 0 1em 0;
  
}
.firefox-speech-panel {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -110%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1em;
  background: #232327;
  color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 4px 24px #0008;
  padding: 1.2em 1.5em;
  min-width: 260px;
  max-width: 95vw;
  margin-bottom: 0.5em;
  font-family: 'Poppins', Arial, sans-serif;
}
.firefox-speech-panel label,
.firefox-speech-panel select,
.firefox-speech-panel input,
.firefox-speech-panel option {
  color: #f5f5f5;
  font-family: 'Poppins', Arial, sans-serif;
}
.firefox-speech-panel select,
.firefox-speech-panel input[type="range"] {
  margin-left: 0.5em;
}
.firefox-speech-status {
  display: none !important; 
  font-size: 0.665em; /* 0.95em * 0.7 */
  color: #00539f;
  margin-top: 0.35em; /* 0.5em * 0.7 */
  min-height: 0.84em; /* 1.2em * 0.7 */
}
.firefox-speech-chapters {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2100;
  display: none;
  color: #f5f5f5;
  border-radius: 10px;
  min-width: 260px;
  max-width: 95vw;
  font-family: 'Poppins', Arial, sans-serif;
  height: 320px;
  max-height: 320px;
  overflow-y: auto;
  bottom: calc(2em + 3.5em + 12px);
  box-shadow: none;
  background: none !important;
  padding: 0 !important;
}
.firefox-speech-chapters.has-list {
  background: #232327 !important;
  box-shadow: 0 4px 24px #0008 !important;
  padding: 1.2em 1.5em !important;
}
.firefox-speech-chapter-list {
  display: none;
  background: #222327;
  color: #fff;
  border-radius: 8px;
  padding: 0.7em 0.5em;
  margin: 0.5em 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  
}
.firefox-speech-chapter-list li {
  background: none;
  color: #fff;
  border-radius: 4px;
  padding: 0.4em 1em;
  cursor: pointer;
  font-size: 1em;
  border: 1px solid transparent;
  transition: background 0.2s, border 0.2s;
}
.firefox-speech-chapter-list li.active {
  background: #44464a;
  color: #fff;
  border: 1px solid #888;
}
.firefox-speech-chapter-list li:hover {
  background: #33343a;
  color: #fff;
}
.firefox-speech-chapter-nav {
  display: flex;
  gap: 0.5em;
  margin-bottom: 0.5em;
}
.firefox-speech-chapter-nav button {
  background: #e0e7ef;
  color: #00539f;
  border: none;
  border-radius: 3px;
  padding: 0.3em 0.8em;
  font-size: 0.97em;
  cursor: pointer;
  transition: background 0.2s;
}
.firefox-speech-chapter-nav button:disabled {
  background: #f0f0f0;
  color: #aaa;
  cursor: not-allowed;
}

/* Player controls globali */
.firefox-speech-player-controls {
  position: fixed;
  left: 50%;
  bottom: 2em;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2em;
  background: #222327;
  padding: 0.7em 1.2em;
  border-radius: 8px;
  margin: 0;
  min-height: 3.5em;
}
.firefox-speech-player-controls button {
  background: none;
  border: none;
  color: #fff;
  width: 1.89em; /* 2.7em * 0.7 */
  height: 1.89em; /* 2.7em * 0.7 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.19em; /* 1.7em * 0.7 */
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  outline: none;
  box-shadow: none;
}
.firefox-speech-player-controls button:disabled {
  color: #888;
  cursor: not-allowed;
}
.firefox-speech-player-controls button:hover:not(:disabled),
.firefox-speech-player-controls button:focus-visible:not(:disabled) {
  background: #fff2;
  color: #fff;
}
.firefox-speech-player-controls svg {
  display: block;
  width: 1.5em;
  height: 1.5em;
  fill: #fff;
}
.firefox-speech-player-chapter-title {
  margin-left: 1.5em;
  color: #fff;
  font-size: 1.1em;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 18em;
}

/* Play/Pausa/Ferma controls */
.firefox-speech-playpause-controls {
  display: flex;
  gap: 1em;
  justify-content: center;
  margin: 1em 0 0.5em 0;
}
.firefox-speech-playpause-controls button {
  background: #e0e7ef;
  color: #00539f;
  border: none;
  border-radius: 50%;
  width: 1.75em; /* 2.5em * 0.7 */
  height: 1.75em; /* 2.5em * 0.7 */
  font-size: 0.91em; /* 1.3em * 0.7 */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.firefox-speech-playpause-controls button:disabled {
  background: #f0f0f0;
  color: #aaa;
  cursor: not-allowed;
}
.firefox-speech-playpause-controls button:hover:not(:disabled) {
  background: #b3d1f7;
}

.firefox-speech-voice {
  background: #111;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 0.4em 1em;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1em;
}

/* Slider arancioni */
.firefox-speech-panel input[type="range"] {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 18px;
  background: transparent;
  margin: 0.5em 0;
  padding: 0;
  box-sizing: border-box;
}
.firefox-speech-panel input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: linear-gradient(90deg, #ff7f27 0%, #ffb380 100%);
  border-radius: 2px;
}
.firefox-speech-panel input[type="range"]::-moz-range-track {
  height: 4px;
  background: linear-gradient(90deg, #ff7f27 0%, #ffb380 100%);
  border-radius: 2px;
}
.firefox-speech-panel input[type="range"]::-ms-fill-lower,
.firefox-speech-panel input[type="range"]::-ms-fill-upper {
  height: 4px;
  background: linear-gradient(90deg, #ff7f27 0%, #ffb380 100%);
  border-radius: 2px;
}
.firefox-speech-panel input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff7f27;
  cursor: pointer;
  box-shadow: 0 2px 6px #0003;
  border: 2px solid #fff;
  margin-top: -7px;
}
.firefox-speech-panel input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff7f27;
  cursor: pointer;
  box-shadow: 0 2px 6px #0003;
  border: 2px solid #fff;
}
.firefox-speech-panel input[type="range"]::-ms-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff7f27;
  cursor: pointer;
  box-shadow: 0 2px 6px #0003;
  border: 2px solid #fff;
}
.firefox-speech-panel input[type="range"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ff7f2755;
}
.firefox-speech-panel input[type="range"]::-ms-tooltip {
  display: none;
}

/* Checkbox arancioni */
.firefox-speech-panel input[type="checkbox"] {
  accent-color: #ff7f27;
  width: 1.1em;
  height: 1.1em;
  border-radius: 4px;
  border: 1.5px solid #ff7f27;
  background: #fff;
  vertical-align: middle;
  margin-right: 0.4em;
}

.firefox-speech-btn.king-flag.kingp-bttns {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 8px 12px;
  background-color: #116466;
  border-radius: 14px;
  border: 1px solid #333;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 0.8em;
  min-width: 36px;
  min-height: 36px;
}
.firefox-speech-btn.king-flag.kingp-bttns:hover {
  background-color: #0e4d4d;
  color: #fff;
}
.firefox-speech-btn.king-flag.kingp-bttns i {
  font-size: 1.3em;
  margin-right: 0;
}

@media (max-width: 600px) {
  .firefox-speech-player-controls {
    flex-wrap: nowrap;
  }
  .firefox-speech-player-controls button,
  .firefox-speech-player-settings {
    flex: 0 0 auto !important;
  }
  .firefox-speech-player-chapter-title {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: 50vw !important;
    font-size: 0.95em !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    margin-left: 0.7em !important;
  }
}
