<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.azure-tts-player {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tts-player-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: white;
}

.tts-icon {
    font-size: 24px;
}

.tts-title {
    font-size: 18px;
    font-weight: 600;
}

.tts-audio-player {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    outline: none;
}

.tts-audio-player::-webkit-media-controls-panel {
    background-color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
    .azure-tts-player {
        padding: 15px;
        margin: 15px 0;
    }
    
    .tts-title {
        font-size: 16px;
    }
    
    .tts-icon {
        font-size: 20px;
    }
}
</pre></body></html>