* {

    margin:0;
    padding: 0;

}

::-webkit-scrollbar {
    display: none;
}

.bot-title img {

    width: 4em;
    height: 4em;
    border-radius: 100%;

}

.container{
    margin: auto;
    display: flex;
    height: 100vh;
    width: 100vw;
    max-width: 600px;
    flex-direction: column;
    justify-content: space-between;
}

.bot-title {
    display: flex;
    align-items: center;
    border-bottom: rgb(237, 237, 237) solid 2px;
    padding: 1em;
    padding-left: 2em;
}

.name {
    margin-left:2em;
    font-family: sans-serif;
    font-weight: bolder;
}

.bot-body {
    height: 100%;
    padding: 2em;
    overflow-y: auto;
    background-color: rgb(237, 237, 237);
    display: flex;
    flex-direction: column;
}

.bot-body{
    content: "";
    padding-bottom: 1em;
}

.bot-body img{
    width: 3em;
    height: 3em;
    border-radius: 100%;
}

.bot-body .msg {
    display: flex;    
    margin-top: 0.5em;
}

.send {
    flex-direction: row-reverse;
}

.send .content{
    background-color: rgb(69, 128, 244);
    color: white;
    margin-right: 1em;
    word-break: break-all;
    display: flex;
    
}

p {
    width: 100%;
}

span {
    color: rgb(69, 128, 244);
}
.received .content{
    margin-left: 1em;
    background-color: white;
}

.content {
    padding: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 4px;
    font-family: sans-serif;
}

.btns {
    width: 100%;
    display: flex;
    flex-direction:column;
    justify-content: center;
}

.btn {
    width: 100%;
    cursor: pointer;
    margin-top:0.5em;
    padding-top:0.3em ;
    padding-bottom:0.3em ;
    border-radius: 6px;
    border: solid 1px;
    color: rgb(69, 128, 244);
    font-weight: bolder;
    width: 100%;
    text-align: center;
}

.btn:hover {
    
    color: white;
    background-color: rgb(69, 128, 244);

}

.text-field {
    width: 100%;
    flex-direction: row;
}

.text-container {
    margin: 1em;
    display: flex;
    justify-content: space-between;
}

#text {
    padding:1em;
    width: 100%;
    border-radius: 10px;
    border: none;
    box-shadow: 0px 0px 3px 1px rgba(100,100,100,0.75);
}

#text:focus {
    box-shadow: 0px 0px 3px 1px rgba(69, 128, 244,0.75);
}

.submit img {
    cursor:pointer;
    color: rgb(69, 128, 244);
    height: 3em;
    width: 3em;
    margin-left: 1em;
}