 body, html {
            height: 100%;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        #asistente {
            position: relative;
            width: 500px; /* Ajustado para un tamaño adecuado */
            height: auto; /* Adaptativo */
            text-align: center;
            background: #fff;
           /* background-color: rgba(0, 0, 0, 0.1);*/
            /*border: 1px solid #ccc;*/
            /*border-radius: 10px;*/
            /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
            padding: 20px;
            /*box-sizing: border-box;*/ /* Para incluir el padding en el tamaño total */
        }
        #asistente-texto {
            display: none;
            position: absolute;
            top: -40px; /* Ajusta la posición del texto sobre la imagen */
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 10px;
            padding: 5px 10px;
            max-width: 200px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }
        #asistente-img {
            margin-top: 10px; /* Espacio para la burbuja */
        }
        #inputContainer {
            margin-top: 20px;
        }
        button {
            margin-top: 20px;
        }


#activar-asistente {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1;
}
