.my-inaz-bottom-buttons {
    z-index:100;
    position: fixed;
    bottom: 20px;
    right: 10px;
    background: #996666;
    padding: 5px;
    opacity: 0.3;
    border-radius: 10px;
    flex-direction:column;
    display:none;
}

.my-inaz-bottom-buttons-template a {
    color:lightgrey;
}

.popup-gpt {
    position: fixed;
    right: 60px;
    bottom: 30px;
    width: calc(100vw - 130px);
    height: calc(100vh - 100px);
    z-index: 1000;
    background: white;
    max-width: 1200px;
}

.popup-gpt-buttons {
    text-align: right;
    background: lightgrey;
    width: 100%;
    width: auto;
    padding: 5px;
}

#iframeChatGpt, .iframeChatGpt {
    border:0px;
    width:100%;
    height:calc(100% - 40px);
}

@media screen and (max-width: 768px) {

    .popup-gpt {
        right: initial;
        max-width: none;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        box-sizing: border-box; /*importantissimo per il corretto funzionamento delle dimensioni*/
    }
}