<!-- Chat Button -->
<button id="openChatBtn" style="position: fixed; bottom: 20px; right: 20px; cursor: pointer; border: none; background: none; z-index: 1000;" onclick="document.getElementById('chatContainer').style.display = 'block';">
<img src="https://demo.tehisintellekt.ee/ut/kas_vajad_abi.svg" alt="Chat Avatar" width="160" height="84" />
</button>
<!-- Chat Container -->
<div id="chatContainer" style="position: fixed; bottom: 0; right: 0; width: 100%; max-width: 500px; height: 80vh; border: 1px solid #ccc; background-color: white; z-index: 1000; display: none; border-radius: 20px 20px 0px 0px;">
<!-- Chat Header with Close Button -->
<div style="background-color: #2C569B; padding: 10px; text-align: right; height: 50px; border-radius: 20px 20px 0 0; display: flex; align-items: center; justify-content: space-between;">
<img src="https://demo.tehisintellekt.ee/ut/tiksu.png" alt="Logo" style="height: 46px; margin-left: 12px;">
<button id="closeChatBtn" style="border: none; background: none; cursor: pointer; padding-right: 12px; display: flex; align-items: center;" onclick="document.getElementById('chatContainer').style.display = 'none';">
<img src="https://demo.tehisintellekt.ee/ut/close_button.svg" alt="Close" />
</button>
</div>
<!-- Chat iFrame -->
<iframe id="chatIframe" src="https://demo.tehisintellekt.ee/ut/assistant" style="width: 100%; height: calc(100% - 70px); border: none; border-radius: 0 0 20px 20px;"></iframe>
</div>
<script> // JavaScript functionality to open and close the chat
document.getElementById('openChatBtn').addEventListener('click', function() { document.getElementById('chatContainer').style.display = 'block'; });
document.getElementById('closeChatBtn').addEventListener('click', function() { document.getElementById('chatContainer').style.display = 'none'; });
</script> |