    body {
  font-family: "IBM Plex Sans", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.promotional {
  margin: 20px;
  padding-bottom: 30px;
  text-align: center;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2em;
}

.header-container h3 {
  color: #135f2d;
  margin-bottom: 10px;
}

.header-container p {
  margin-top: 5px;
  font-weight: bold;
}

.content_section {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  width: 80vw;
  flex-shrink: 0;
  margin-top: 5px;
}
.content_header {
  text-align: center;
  border-bottom: 1px solid #ddd;
  padding: 10px;
}
.msg_body {
  border: 1px solid #d1d1d6;
  border-radius: 24px;
  background-color: #f5f5f5;
}

.main_content,
.msg_send {
  padding: 20px;
}

.bot_msg,
.user_msg {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 5px; /* Add padding before the bot message */
}
.user_msg {
  background-color: #fff;
}
.bot_msg {
  background-color: #86f1bc66;
}

.message.bot .bot_icon
 {
  padding: 10px;
  border-radius: 10px;
  margin-top: 5px;
}
.message.user .user_icon {
  padding: 10px;
  border-radius: 10px;
  margin-top: 5px;
}
.user_icon {
  background-color: #fff;
}
.bot_icon {
  background-color: #006650;
}
.bot_icon img,
.user_icon img {
  max-width: 100%; /* Ensure the image doesn't exceed its container */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Ensure the image is displayed as a block element */
  border-radius: 50%; /* Make the image circular */
}
.username {
  font-weight: bold;
  padding-right: 5px;
  font-size: 0.8em !important;
}
.time {
  font-size: 0.8em !important; /* Adjust the font size as needed */
  padding: 5px; /* Adjust the padding as needed */
}
.msg_send {
  position: relative;
}

input#msg_input {
  width: calc(100% - 9px); /* Adjust the width to fit within the container */
  border: none; /* Set initial border color to transparent */
  padding: 20px 20px 20px 54px; /* Adjust the padding to ensure it fits properly */
  border-radius: 10px;
  
}
/* Dont change border color on focus */
input#msg_input:focus {
  outline: none; /* Remove default focus outline */
}

/* Change border color on focus */
input#msg_input:focus {
  border-color: #006650;
}
.logo_user img.logo_user {
  position: absolute;
  background-color: #e5e5e5;
  padding: 10px;
  border-radius: 10px;
  top: 30%;
  left: 30px;
  width: 38px;
  height: 38px;
}
button.sending_icon {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  right: 3.3%;
  top: 36%;
}
@media only screen and (max-width: 1080px) {
  button.sending_icon {
    right: 5.5%; /* Adjust this value as needed */
  }
}
@media only screen and (max-width: 768px) {
  img.logo_user {
    top: 30%;
  }
  .main_content,
  .msg_send {
    padding: 20px;
  }
  input#msg_input {
    width: 86%;
  }
  button.sending_icon {
    right: 4.5%;
  }
}
@media only screen and (max-width: 360px) {
  .main_content {
    padding: 20px;
  }
  .msg_send {
    position: relative;
    padding-left: 15px;
  }
  input#msg_input {
    width: 78%;
    padding-left: 54px;
    padding-right: 42px;
  }
}

#messages {
  height: 45vh;
  overflow-y: auto;
}

.message {
  display: grid;
  grid-template-columns: auto 1fr; /* Adjust the column widths */
  align-items: start; /* Align items vertically */
  padding: 5px;
}
/* width: 400px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); */

.message empty {
  padding: 20px;
  border: 1px solid #ddd;
}

.message span {
  font-size: 2em;
}

.message img {
  margin-right: 1em;
  padding: 5px;
  margin-top: 0.5em;
}

.message prompt {
  font-size: 1em;
}
a {
  color: #006650; /* Set hyperlink color to #006650 */
  text-decoration: none; /* Remove underline */
  font-weight: bold; /* Make text bold */
  display: inline; /* Ensure the link behaves like inline text */
}
p {
  margin: 0;
  padding: 0;
}