body {
  background: #0d1117;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
}



.chat-container {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.chat-window {
  margin-top: 1em;
  text-align: left;
  max-height: 60vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.bubble {
  padding: 0.75em 1em;
  margin: 0.5em;
  border-radius: 1em;
  max-width: 80%;
  word-wrap: break-word;
}

.bubble.user {
  background: #0057e7;
  color: #fff;
  align-self: flex-end;
}

.bubble.bot {
  background: #20262e;
  color: #dcdcdc;
  align-self: flex-start;
}
.searchbox-wrap {
  display: flex;
width: 100%;
  margin-top: 8%;
  margin-left: auto;
  margin-right: auto;
}
.searchbox-wrap input {
  flex: 1;
  padding: 30px 20px;
  font-size: 1.1em;
  -webkit-border-top-left-radius: 25px;
  -webkit-border-bottom-left-radius: 25px;
  -moz-border-radius-topleft: 25px;
  -moz-border-radius-bottomleft: 25px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  box-shadow: none;
  border: none;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.19);
}
.searchbox-wrap button {
  padding-right: 10px;
  background-color: #fff;
  -webkit-border-top-right-radius: 25px;
  -webkit-border-bottom-right-radius: 25px;
  -moz-border-radius-topright: 25px;
  -moz-border-radius-bottomright: 25px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: 5px 4px 6px rgba(0, 0, 0, 0.19);
  border: none;
  cursor: pointer;
  cursor: hand;
}
.searchbox-wrap button span {
  margin-left: 50px;
  padding: 24px 45px;
  font-size: 0.9em;
  text-transform: uppercase;
  font-weight: 300 ;
  color: #fff;
  background-color: #F54E59;
  border-radius: 20px;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.19);
}
.searchbox-wrap button span:hover {
  background-color: #d6121f;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.19);
}

