/* Basic highlights */
.tts-word {
    transition: background-color 0.2s ease, color 0.2s ease;
}

.tts-word.active {
    background-color: #94bbf9; /* Google active word */             /* Google blue text */
    border-radius: 2px;        /* subtle rounding like Google */
}

.tts-paragraph.active {
    background-color: #D2E3FC;
}

/* Button styling */
.tts-listen-btn {
    padding: 0 23px;
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
	height: 40px;
}

.tts-listen-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.tts-listen-btn:hover:not(:disabled) {
    background-color: #7d5b99;
	border: 0;
    color: #fff;
}

.tts-audio-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
	margin-bottom:10px;
}