    #chatinaiDiv {
        cursor: move;
        display: none;
        padding: 10px;
        position: fixed; /* Cambiado a posicionamiento relativo */
        background-color:  transparent;
        border: transparent;
        margin-top: 10px;
        top: 0;
        bottom: 0;
        height: 100%; 
        width: 30%; 
        animation: mostrarDiv 0.5s forwards; 
        z-index: 9999; 

    }    
    /* Estilos para el botón con imagen */
    .botonChatinai {
        background-image: url('https://www.chatinai.net/web/img/logo.png');
        background-size: contain; 
        background-repeat: no-repeat; 
        background-position: center; 
        padding: 20px 20px; 
        border: none; 
        cursor: pointer; 
        color: white; 
        font-size: 16px; 
        opacity: 0.8; 
        background-color: transparent; 
    }
    #chatinaiIframe {
        width: 100%; 
        height: 100%; 
        border: none; 
    }

    /* Animación de entrada del div desde el lateral */
    @keyframes mostrarDiv {
        from { right: -600px; }
        to { right: 0; }
    }

    .imagen-boton {
        display: flex; /* Establece el contenedor como flexbox */
        align-items: center; /* Centra verticalmente los elementos en el contenedor */
    }
    
    .imagen-boton img {
        margin-right: 5px; /* Espacio entre la imagen y el botón */
    }
    #cerrarChatinai {
        background-image: url('https://blasai.com/static/assets/img/closeChatinai.png');
        background-size: contain; 
        background-repeat: no-repeat; 
        background-position: center; 
        position: absolute;
        border: none;
        padding: 10px 20px;  
        top: 10px;
        right: 5px; /* Ajusta el espacio desde el borde izquierdo según tus necesidades */
        transform: translateY(-50%);
        background-color:  transparent;
    }
    