#messages {
  height: 150px;
  padding: 10px;
  background-color: rgb(27, 24, 53, 0.5);
  border-radius: 6px;
  overflow-y: auto;
}

#messages-desktop {
  height: 150px;
  padding: 10px;
  background-color: rgb(27, 24, 53, 0.5);
  border-radius: 6px;
  overflow-y: auto;
}

#messages-mobile {
  height: 150px;
  padding: 10px;
  background-color: rgb(27, 24, 53, 0.5);
  border-radius: 6px;
  overflow-y: auto;
}

#message-input-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 10px;
}

#message-input-container-desktop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 10px;
}

#message-input-container-mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 10px;
}



#message-input {
  background-color: rgb(27, 24, 53, 0.5);
  border-radius: 6px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  height: 90px;
  color: white;
}

#message-input-desktop {
  background-color: rgb(27, 24, 53, 0.5);
  border-radius: 6px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  height: 90px;
  color: white;
}

#message-input-mobile {
  background-color: rgb(27, 24, 53, 0.5);
  border-radius: 6px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  height: 90px;
  color: white;
}

#send-button {
  position: absolute;
  bottom: 1px;
  right: 1px;
  z-index: 1;
  border-radius: 6px;
  background-color: rgb(27, 24, 53, 0.5);
}

#send-button-desktop {
  position: absolute;
  bottom: 1px;
  right: 1px;
  z-index: 1;
  border-radius: 6px;
  background-color: rgb(27, 24, 53, 0.5);
}

#send-button-mobile {
  position: absolute;
  bottom: 1px;
  right: 1px;
  z-index: 1;
  border-radius: 6px;
  background-color: rgb(27, 24, 53, 0.5);
}

#chat-container-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

#chat-container-container-desktop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

#chat-container-container-mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

#chat-container {
  overflow: hidden;
  border-radius: 6px;
  width: 400px;
  width: 100%;
}


#chat-container-desktop {
  overflow: hidden;
  border-radius: 6px;
  width: 400px;
  width: 100%;
}


#chat-container-mobile {
    margin-top:10px;
  overflow: hidden;
  padding:0;
  border-radius: 6px;
  width: 400px;
  width: 100%;
}

@media screen and (max-width: 576px) {
  #message-input-container {
    margin: 0 20px 20px 20px;
  }

  div #messages {
  height:75px;
  padding: 10px;
  background-color: rgb(27, 24, 53, 0.5);
  border-radius: 6px;
  overflow-y: auto;
  font-size:50%;
}

div #messages-desktop {
  height:75px;
  padding: 10px;
  background-color: rgb(27, 24, 53, 0.5);
  border-radius: 6px;
  overflow-y: auto;
  font-size:50%;
}

div #messages-mobile {
    padding:0;
  height:130px;
  background-color: rgb(27, 24, 53, 0.5);
  border-radius: 6px;
  overflow-y: auto;
  font-size:60%;
}


  #chat-container {
    width: 320px;
    margin-bottom:15px;
  }
}
