body,html {
    height: 100%;
}

.chat-container {
    margin: 0px;
    padding: px;
}

.chat-message {
  padding: 6px;
  border-radius: 3px;
  margin-bottom: 3px;
}

.bot-message {
    background: green;
    color: white;
}

.human-message {
    background:dodgerblue;
    color: white;
    margin: 13px 1px;
}

.input {
  width: 100%;
  margin: 35px 0px;
  height: 60px;
  border: 1px solid rosybrown;
  border-radius: 3px;
}
.table {
    font-family: arial;
    border-collapse: collapse;
    width: 100%;
    cellpadding=1px;
}
.td, th {
    border: 1px solid #dddddd;
}
.tr:nth-child(even) {
    background-color: #f2f2f2;
    font-color: white;
    align:center;
}
.thead {
    align:center;
}
.th {
    background-color:#B0C4DE;
}