@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,700;1,500&display=swap");
* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  color: white;
}

html {
  height: 100%;
}

/* width */
::-webkit-scrollbar {
  width: 0px;
}

/* Track */
/* Handle */
::-webkit-scrollbar-thumb {
  background: #8d0230;
}

input {
  border: none;
  border-radius: 5px;
}

::placeholder {
  color: white;
}

.app {
  background-color: #f3efea;
  display: flex;
}
.app .logoHeader {
  width: 100%;
  max-width: 450px;
}
.app .sidebar {
  background-color: white;
  height: 100vh;
  width: 244px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.app .sidebar button {
  border: solid 0.5px #8d0230;
  background-color: transparent;
  border-radius: 5px;
  padding: 10px;
  margin: 10px;
  color: #8d0230;
  cursor: pointer;
}
.app .sidebar ul.history {
  margin: 10px;
  height: 100%;
}
.app .sidebar ul.history li {
  list-style: none;
  cursor: pointer;
  color: white;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 5px;
  background-color: #a60239;
}
.app .sidebar nav {
  border-top: solid 0.5px #8d0230;
  padding: 10px;
  margin: 10px;
  color: white;
}
.app .sidebar .brandLogo img {
  max-width: 200px;
}
.app .main {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.app .main h1 {
  color: #8d0230;
  padding-top: 15px;
}
.app .main .info {
  color: #8d0230;
  margin-top: 5px;
  font-size: 11px;
}
.app .main .feed,
.app .main .welcome {
  text-align: left;
  margin: 0 50px;
  transition: all 0.5s ease;
  padding: 0 50px;
  width: 100%;
  height: 100%;
  animation: example 0.4s ease-in 1;
  overflow: auto;
  scroll-padding-bottom: 10%;
}
.app .main .feed .first,
.app .main .welcome .first {
  background-color: #ab9d96;
  width: 100%;
  position: relative;
  animation: example 0.4s ease-in 1;
}
.app .main .feed .first span,
.app .main .welcome .first span {
  text-transform: capitalize;
}
.app .main .feed .ai,
.app .main .welcome .ai {
  background-color: #ab9d96;
  width: 75%;
  position: relative;
  right: -25%;
}
.app .main .feed .user,
.app .main .welcome .user {
  background-color: #a60239;
  width: 50%;
}
.app .main .feed h3,
.app .main .welcome h3 {
  margin-bottom: 5px;
}
.app .main .feed li,
.app .main .welcome li {
  background-color: #b29878;
  margin: 30px 0;
  padding: 15px;
  border-radius: 5px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app .main .welcome {
  text-align: center;
  margin: 0;
}
.app .main .welcome input {
  padding: 10px;
  display: inline-block;
  margin-top: 10px;
  width: 50%;
  text-align: center;
  margin: auto;
}
.app .main .welcome button {
  padding: 10px;
  width: 50%;
  margin: auto;
}
.app .main .bottom-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.app .main .input-container {
  position: relative;
  width: 90%;
  max-width: 650px;
}
.app .main .input-container input {
  background-color: #8d0230;
  border: none;
  font-size: 20px;
  padding: 12px 15px;
  border-radius: 5px;
  width: 100%;
  color: white;
}
.app .main .input-container input:focus {
  outline: none;
}
.app .main .input-container input.waiting {
  opacity: 0.5;
}
.app .main .input-container #submit {
  position: absolute;
  bottom: 15px;
  right: 10px;
}
.app .main .feed {
  min-height: 70%;
}
.app #submit {
  cursor: pointer;
}
@keyframes example {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

@media screen and (max-width: 991px) {
  .logoHeader {
    width: 100%;
  }
  .app .sidebar {
    display: none;
  }
}