#widget-container {
    position: fixed;
    height: 80vh;
    width: 400px;
    bottom: 80px;
    right: 2.5%;
    background-color: #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    z-index: 2000;
    box-shadow: 0px 0px 50px 10px gray;
}

#toggle-button {
    position: fixed;
    bottom: 10px;
    right: 15px;
    background-color: none;
    color: #fff;
    padding: 5px 5px;
    border: none;
    border-color: #4B5563;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
}

@media (max-width: 768px) {
    #widget-container {
        bottom: 70px;
        right: 2.5%;
        width: 95%;
        height: 70vh;
        border-radius: 10px;
        overflow: hidden;
    }

    #toggle-button {
        bottom: 5px;
        right: 5px;
        font-size: 24px;
        width: 90px;
        height: 90px;
    }

    iframe {
        overflow: hidden;
    }
}

/*@media (max-width: 650px) {
    #widget-container {
        overflow: hidden;
        width: 90%;
    }

    #toggle-button {
        bottom: 5px;
        right: 5px;
        font-size: 24px;
        width: 170px;
        height: 170px;
    }
}*/

/*@media (max-width: 380px) {
    #widget-container {
        overflow: hidden;
        width: 350px;
    }

    iframe {
        overflow: hidden;
        width: 350px
    }
}*/
