/* Custom styles for the chat window */
.window {
  margin: 32px auto; /* This will center align the window */
  width: 250px;
}

.message {
  text-align: center; /* This will center align the text in each message */
  margin-bottom: 0.5em;
  padding: 0.5em;
}

.field-row input {
  margin-left: 0.7em; /* This will add a 1.5em margin to the left side of the input field */
  width: calc(100% - 80px); /* This will make the input field stretch to the width of the chat window minus the width of the send button */

}

/* Style the background of the whole page */
body {
  background-color: #fef6ee; /* This will set the background color of the page to #fef6ee */
}
