tessst

<!-- Δοχείο εικονιδίων -->
<div style="text-align: center; margin-top: 20px;">
    <button onclick="loadIframe('match_av')" style="padding: 10px 20px; font-size: 16px;">Επερχόμενος αγώνας</button>
    <button onclick="loadIframe('analyse_match')" style="padding: 10px 20px; font-size: 16px;">Ανάλυση αγώνα</button>
</div>

<!-- Iframes -->
<div id="iframe-container">
    <!-- Iframe "Αίτηση ανάλυσης αγώνα" -->
    <div id="iframe-analyse-match" style="display: none;">
        <iframe id="inlineFrameAnalyseMatch" title="Αίτηση ανάλυσης αγώνα" 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 "Ανάλυση επερχόμενων αγώνων" -->
    <div id="iframe-match-a-venir" style="display: none;">
        <iframe id="inlineFrameMatchAVenir" title="Ανάλυση επερχόμενων αγώνων" 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) {
        // Απόκρυψη όλων των iframes
        document.getElementById('iframe-analyse-match').style.display = 'none';
        document.getElementById('iframe-match-a-venir').style.display = 'none';

        // Εμφάνιση του iframe που αντιστοιχεί στην επιλεγμένη επιλογή
        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>