tessst

<!-- Contenedor de iconos -->
<div style="text-align: center; margin-top: 20px;">
    <button onclick="loadIframe('match_av')" style="padding: 10px 20px; font-size: 16px;">Partido próximo</button>
    <button onclick="loadIframe('analyse_match')" style="padding: 10px 20px; font-size: 16px;">Analizar un partido</button>
</div>

<!-- Iframes -->
<div id="iframe-container">
    <!-- Iframe "Solicitar el análisis de un partido" -->
    <div id="iframe-analyse-match" style="display: none;">
        <iframe id="inlineFrameAnalyseMatch" title="Solicitar el análisis de un partido" width="100%" height="500" src="https://predictionai-app.bubbleapps.io/" style="border: none; border-radius: 10px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);"></iframe>
    </div>

    <!-- Iframe "Análisis de los partidos próximos" -->
    <div id="iframe-match-a-venir" style="display: none;">
        <iframe id="inlineFrameMatchAVenir" title="Análisis de los partidos próximos" width="100%" height="500" src="https://predictionai-app.bubbleapps.io/accueil" style="border: none; border-radius: 10px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);"></iframe>
    </div>
</div>

<script>
    function loadIframe(option) {
        // Ocultar todos los iframes
        document.getElementById('iframe-analyse-match').style.display = 'none';
        document.getElementById('iframe-match-a-venir').style.display = 'none';

        // Mostrar el iframe correspondiente a la opción seleccionada
        if (option === 'match_av') {
            document.getElementById('iframe-match-a-venir').style.display = 'block';
        } else if (option === 'analyse_match') {
            document.getElementById('iframe-analyse-match').style.display = 'block';
        }
    }
</script>