*{
    font-family: Montserrat;
}
body{
  background-color: rgb(221, 247, 247);

}

.bot-content {
  display: flex;
  flex-direction: column;
  margin-top: 70px;      /* clears header */
  margin-left: 100px;    /* clears sidebar */
  max-width: 1250px;
  width: calc(100% - 100px);
  height: calc(100vh - 70px);
  border-radius: 12px;
}

.botHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px 12px 0 0;
  background-color: rgb(224, 255, 139);
  padding: 10px 20px;
}

.bot-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chatBox {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: rgb(190, 226, 209);
  width: 100%;
  overflow-y: auto;
  border-radius: 0 0 12px 12px;
}

.input-section {
  display: flex;
  padding: 10px;
  background: #fff;
}

.input-box {
  flex: 1;
  height: 40px;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.bot-message,
.user-message {
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  max-width: 70%;
  word-wrap: break-word;
}

.bot-message {
  background-color: #fff;
  align-self: flex-start;
}

.user-message {
  background-color: rgb(173, 252, 165);
  margin-right: 30px;
  align-self: flex-end;
}
