


  #chat {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  input {
    min-width: 100%;
    border: 1px solid #000;
    height: 50px;
    padding: 0 20px;
    font-size: 14px;
  }

  button {
    width: 600px;
    height: 50px;
    font-size: 14px;
    background: #069;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    color: #FFF;
    margin-top: 10px;
  }

  .messages {
    border: 1px solid #000 !important;
    overflow-y: scroll;
    max-height: 400px;
    position: relative;
  }
  .message{
    padding: 10px;
    border-bottom: 1px solid #000;

  }
  .time{
    font-size: 10px;
    color: #666;
    display: flex;
    justify-content: flex-end;
  }
