#bottom-div {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 5vh;
  left: 0;
  width: 100%;
}

#sendbtn {
  background-color: rgb(120, 255, 120);
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#sendbtn:hover {
  background-color: rgb(100, 230, 100);
}

#top-div {
  border: solid black;
  display: block;
  position: fixed;
  left: 0;
  width: 90%;
  height: 70vh;
  overflow: scroll;
  margin-left: 5vw;
  margin-right: 5vw;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#textbox {
  width: 50vw;
  resize: none;
  height: 20vh;
  background-color: rgb(140, 220, 255);
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: sans-serif;
}

body {
  background-color: rgb(109, 216, 255);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

hr {
  height: 0.5vh;
  background-color: black;
  border: black;
}

.chatbotp {
  padding: 2.5vw;
  padding-left: 1.5vw;
  padding-right: 45vw;
  justify-content: left;
  display: flex;
  border-radius: 10px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.userp {
  padding: 2.5vw;
  padding-left: 1.5vw;
  padding-left: 45vw;
  justify-content: right;
  display: flex;
  border-radius: 10px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

b {
  padding-right: 1vw;
}

span {
  white-space-collapse: preserve;
  overflow: hidden;
}

pre {
  white-space: pre-wrap; /* Wraps text naturally */
  word-wrap: break-word; /* Breaks long words */
  overflow-wrap: break-word; /* Ensures long words are handled */
  border-radius: 6px;
  font-family: "Courier New", Courier, monospace;
}

#model-select-div {
  text-align: center;
}

select {
  background-color: rgb(140, 220, 255);
  border: 1px solid #aaa;
  border-radius: 6px;
}

p,
ul,
ol {
  margin-block-start: 0em;
  margin-block-end: 0em;
}

html,
body {
  overscroll-behavior: none;
  overflow: hidden;
  height: 100%;
}
