#bot {
    margin: 50px auto;
    background: white;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 15px rgb(0 0 0 / 20%);
    border-radius: 20px;
    flex-direction: column;
    color: #212529;
    position: fixed;
    bottom: 60px;
    right: auto;
    transform: scale(1);
    transform-origin: right bottom;
    transition: transform 0.3s ease;
    z-index: 99999;
    top: unset !important;
    display: block;
}
#word{
width: 70px;
height: 70px;
  font-family: Megrim, cursive;
  font-size: 20px;
  position: absolute;
  margin: 10;
  /*bottom: 0;*/
  color: #fc0;
  -webkit-text-stroke: 0.15px #c0f;
position: fixed;
bottom: 40px;
right: 20px;
    border-radius: 50%;
    filter: blur(5px);
    z-index: 2;
    border: 6px solid #0e5013;
}
@media (min-width: 1022px) {
#bot {
        left: calc((100% - 900px) / 2);
    }
#inputArea {
width: calc(80% - 20px);
}
}
@media (max-width: 1021px) {
#inputArea {
width: calc(100% - 20px);
}
}
#bot {
        width: 100%;
        height: 90%;
        max-width: 900px;
        max-height: 80vh;
    }

.closeGera{
    position: absolute;
    z-index: 2;
    top: 4%;
    right: 5%;
    }


#container {
height: 95%;
    border-radius: 6px;
    width: 95%;
    top: 2.5%;
    left: 2.5%;
    position: relative;
}

#header {
    width: 100%;
    height: 45px;
    border-radius: 6px;
    background: #0d8814;
    color: white;
    text-align: center;
    font-size: 2rem;
    padding-top: 0px;
    box-shadow: 2px 2px 8px rgb(0 0 0 / 10%);
    display: block !important;
}

#body {
  width: 100%;
  height: 90%;
  overflow-y: auto;
}

.userSection {
  width: 100%;
}

.seperator {
  width: 100%;
  height: 50px;
}

.messages {
    max-width: 90%;
    margin: .5rem;
    font-size: 16px;
    padding: .5rem;
    border-radius: 23px 23px 2px 23px;
}

.user-message {
margin-top: 10px;
    text-align: right;
    background: #83b585;
    color: white;
    float: right;
    margin-left: 30%;
}

.bot-reply {
display: flex;
    justify-content: center;
    padding: 1rem 11px;
    background: transparent;
    position: relative;
    align-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    width: calc(100% - 15px);
    text-align: left;
}

#inputArea {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    height: 58px;
    padding: 1rem;
    background: transparent;
    position: fixed;
    bottom: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
}

#userInput {
    height: 18px;
    width: calc(95% - 90px);
    background-color: white;
    border-radius: 6px;
    padding: 1rem;
    font-size: 1rem;
    border: none;
    outline: none;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    margin-left: 0px;
}

#send {
    height: 50px;
    padding: 0.5rem;
    font-size: .8rem;
    text-align: center;
    width: 90px;
    color: white;
    background: #4ba950;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    box-shadow: 2px 2px 8px rgb(0 0 0 / 10%);
    margin-top: -19px;
    margin-left: 11px;
}
