/* Estilos para o Player de Leitura de Texto */
.manus-tts-player {
    position: absolute;
    z-index: 99999;
    background-color: #343a40; /* Cor escura */
    border-radius: 25px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
    border: 1px solid #495057;
    transform: translateX(-50%); /* Centraliza o player horizontalmente */
    left: 50%; /* Posição inicial, será ajustada pelo JS */
}

.manus-tts-player::after {
    content: 
; /* Remove o triângulo */
    /* position: absolute;
    top: 100%;
    left: 20px;
    border-width: 8px;
    border-style: solid;
    border-color: #343a40 transparent transparent transparent; */
}

.manus-tts-btn {
    background: none;
    border: none;
    color: #f8f9fa; /* Cor clara */
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.2s;
}

.manus-tts-btn:hover {
    color: #17a2b8; /* Cor de destaque (ciano) */
}

.manus-tts-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #17a2b8;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

