<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.bodychatbot {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    color: #337ab7;
    margin-top: 40px;
    text-align: center;
    /* width: 80%; */
    margin: auto;
}

#question-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    /* width: 80%; */
    margin: auto;
}

label {
    font-size: 18px;
    margin-bottom: 10px;
}

input[type="text"], textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    font-size: 16px;
    border: 2px solid #337ab7;
    border-radius: 4px;
    height: 120px;
    overflow-y: auto;
}
textarea::-webkit-scrollbar {
    border-radius: 10px;
    background-color: #fff;
    width: 10px;
    margin: 50px;
}
textarea::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 5px;
}

button.enviarsofia {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s;
}

button[type="submit"].enviarsofia {
    background-color: #337ab7;
}

button[type="button"].enviarsofia {
    background-color: #337ab7;
}

#chat-history {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 30px;
    font-size: initial;
}

#chat-history p {
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    width: 100%;
}

#chat-history p strong {
    color: #337ab7;
}

#chat-history p:nth-child(even) {
    background-color: #337ab7;
    color: #ffffff;
}

#chat-history p:nth-child(odd) {
    display: flex;
    flex-direction: row;
    background-color: #f7f7f7;
}

#chat-history p:nth-child(n+2) {
    margin-top: 0;
}

/* Novo estilo para o background da div "chat-history" quando o usuÃ¡rio clicar em "Ver HistÃ³rico" */
.chat-history-background {
    background-color: #f0f0f0;
}

.avatar {
    width: 150px !important;
    height: 100%;
    float: left;
    clip-path: circle();
    margin-right: 10px;
}

/* Estilos existentes */
/* ... */

/* Estilos para tornar o layout responsivo */
@media (max-width: 768px) {
    .bodychatbot {
        align-items: stretch;
    }

    h1 {
        font-size: 24px;
        text-align: center;
        width: 100%;
    }

    #question-form {
        width: 100%;
    }

    label {
        font-size: 16px;
    }

    input[type="text"] {
        font-size: 14px;
        width: 92%;
    }

    button {
        font-size: 14px;
    }

    #chat-history {
        width: 100%;
    }

    #chat-history p {
        max-width: auto;
    }

    .avatar {
        width: 100px;
    }
}

/* Estilos para as fontes: */

.descricaofontes a {
    color: #1266e5;
}

.sujestaopergunta {
    display:block;
    background: #e9f0fe;
    padding: 10px 15px;
    border-radius: 10px;
    margin: 2px 0px 16px;
    width: 100%;
    /*font-weight: 600;*/
}</pre></body></html>