#header {
    display: flex;
    justify-content: space-between;
    margin: auto;
}

#summary {
    margin-bottom: 20px;
}

#dialogues {
    height: 60vh;
    overflow-y: scroll;
    border: 1px solid gray;
    padding: 10px;
    width: 100%;
}

#dialogues div {
    color: black;
    padding: 10px 10px 10px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 70%;
}

#dialogues .assistant {
    background-color: #f0f0f0;
    float: left;
}

#dialogues .user {
    background-color: #d9fdd3;
    float: right;
}

table tr {
    cursor: pointer;
}
