/*chatbot*/

.chat-container {
    max-height: 500px;
    overflow-y: scroll;
    font-size: 25px;
}

textarea {
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 25px;
    font-weight: bold;
}

.send {
    border-radius: 4px;
    font-size: 25px;
    font-weight: bold;
}

.recive {
    background: #a7ccd8;
    border-radius: 4px;
    font-size: 25px;
    font-weight: bold;
}

.bg-gray {
    background: #f0f6f8;
    border: black;
}

.numeros {
    list-style-type: decimal;
    /* Cambia viñetas a números */
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
}

.text-chat {
    color: #fff;
    font-size: 30px;
    font-style: italic;
    font-weight: bold;
}

.social {
    position: fixed;
    left: 0;
    top: 200px;
    z-index: 2000;
    padding-right: 50px;
    background: rgba(128, 0, 128, 0.4);
    border-radius: 120px;
}

.social ul {
    list-style: none;
}

.social ul li a {
    display: inline-block;
    color: #fff;
    background: #bd008a;
    padding: 10px 15px;
    text-decoration: none;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.speech-bubble {
    position: relative;
    background: #bd008a;
    border-radius: 1em;
    width: 100px;
    height: 100px;
    text-align: center;
    font-size: 60px;
    transform: translateX(-25px) translateY(10px);
    /* Desplaza la burbuja hacia la izquierda y abajo */
    /* Ajusta el valor de 20px según cuánto deseas bajarla */
}