/* Estilos mínimos para el mini reproductor */
.tts-player {
    margin-top: 10px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 12px;
    max-width: 520px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: #fff;
}
.tts-container .tts-toggle {
    cursor: pointer;
    border: none;
    background: #1f74ff;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
}
.tts-row { margin: 8px 0; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.tts-row button {
    cursor: pointer;
    border: 1px solid #ddd;
    background: #f9f9f9;
    padding: 8px 10px;
    border-radius: 8px;
}
.tts-progress-wrap {
    position: relative;
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 8px;
}
.tts-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: #1f74ff;
    transition: width 0.1s linear;
}
.tts-time { font-size: 12px; color: #555; margin-top: 6px; }
