body *{
  font-family: "Comic Sans MS";
}

.container {
  width: 100%;
  margin-top: 14px;
  display: flex;
}
.changeUsername {
  margin-right: 14px;
  height: fit-content;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  background-color: white;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  top: 200px;
}
#menu{
  width: 100%;
  margin-left: 14px;

}

#username {
  margin-bottom: 8px;
}
#room-list{
  width: 200px;
  
  display:inline-block; 
  flex: 1;
  /*max-width: 600px;*/
  /*margin: 30px auto;*/
  padding: 1rem;

  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
}
#member-list{
  float:left; 
  flex: 1;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
}
#web-chat{
  flex: 1;
  display:inline-block; 
  width: 500px;
  flex: 1;
  /*max-width: 600px;*/
  /*margin: 30px auto;*/
  padding: 1rem;
  background-color: white;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
}

#chatroom{
  height: 700px;
  overflow: auto;
}
#loglist{
  height: 300px;
  overflow: auto;
}
#output p{
  padding: 14px 0;
  margin: 0 20px;
  border-bottom: 1px solid #e9e9e9;
  color: #555;
}

#feedback p{
  color: #aaa;
  padding: 14px 0;
  margin: 0 20px;
}

#encKey p{
  color: #555;
  padding: 14px 0;
  margin: 0 20px;
  border-bottom: 1px solid #e9e9e9;
}
.btn {
  background-color: #4CAF50; /* Green */
  width: 100px;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
}
#output strong{
  color: #575ed8;
}

label{
  box-sizing: border-box;
  display: block;
  padding: 10px 20px;
}
input
input{
  padding: 3px 7px;
  width: 100px;
}

#input_zone {
  display: flex;
  margin-top: 14px;
}
#input_zone button {
  margin-left: 14px;
}

#sendMessage {
  color: white;
}
.message {
  padding: 4px 6px;
  background-color: aliceblue;
  border-radius: 6px;
}