/*@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');

/* Center body contents, both horizontally and vertically */


/* Style the outer container. Centralize contents, both horizontally and vertically */
#bot {
  margin: 10px 0;
  height: 650px;
  width: 500px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2) ;
  border-radius: 20px;
}

/* Make container slightly rounded. Set height and width to 90 percent of .bots' */
#container {
  height: 90%;
  border-radius: 6px;
  width: 90%;
  background: #F3F4F6;
}

/* Style header section */
#header {
  width: 100%;
  height: 12%;
  border-radius: 6px;
  background: #FFFFFF;
  background-image: url("../images/chatheadlogo.png");
  background-size: 200px;
  background-position: 20px;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  font-size: 2rem;
  padding-top: 12px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

/* Style body */
#body {
  width: 100%;
  height: 80%;
  background-color: #F3F4F6;
  overflow-y: auto;
}

/* Style container for user messages */
.userSection {
  width: 100%;
}

/* Seperates user message from bot reply */
.seperator {
  width: 100%;
  height: 50px;
}

/* General styling for all messages */
.messages {
  max-width: 80%;
  margin: .5rem;
  font-size: 1.40rem;
  font-family: lato;
  padding: .5rem;
  border-radius: 7px;
}

/* Targeted styling for just user messages */
.user-message {
  margin-top: 1rem;
  text-align: left;
  background: #ff545a;
  color: #FFFFFF;
  float: right;
}

/* Targeted styling for just bot messages */
.bot-reply {
  text-align: left;
  background: #E5E7EB;
  margin-top: 1rem;
  float: left;
  color: black;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}
.bot-reply .imgpng { 
    display: block; 
    height: auto; 
	position: relative;
	width: 100px;
} 
/* Style the input area */
#inputArea {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10%;
  padding: 1rem;
  background: transparent;
}

/* Style the text input */
#userInput {
  height: 30px;
  width: 80%;
  background-color: white;
  border-radius: 6px;
  padding: 1rem;
  font-size: 1.4rem;
  font-family: lato;
  border: none;
  outline: none;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

/* Style send button */
#send {
  height: 30px;
  padding: 0rem;
  font-size: 1.4rem;
  text-align: center;
  width: 20%;
  color: white;
  background: #ff545a;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}
#close {
  height: 30px;
  padding: 0rem;
  font-size: 1.4rem;
  text-align: center;
  width: 20%;
  color: white;
  background: #000000;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}
