.container {
    border: none;
    margin: 0 auto;
    max-width: 100%;
}

.footer__inner {
    width: 100%;
}


.responsive-div {
    display: flex;
    justify-content: center;
    overflow: auto;
    border: 15px solid #78E2A0;
    border-radius: 40px;
    /* Add this to handle scrolling within the iframe */
    -webkit-overflow-scrolling: touch;
    /* Enable smooth scrolling in iOS */
}

.chat-iframe {
    width: 100%;
    height: 90dvh;
    border: none;
}

@media screen and (max-width: 650px) {
    .responsive-div {
        border: 3px solid #78E2A0;
        border-radius: 20px;
    }
    .responsive-iframe {
        height: 90vh;
    }
}