body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    border-radius: 2rem;
}

.chat-container {
    display:block;
    max-width: 400px;
    max-height: 400px;
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    background-color: #f1722d;
}
.chat-container .header {
    padding: 1rem;
    border-radius: 2rem 2rem 0 0;
    height: 50px;
    background-color: #f1722d;
    color: white;
    text-align: center;
    font-size: 1.5rem;
}

.chat-container .header .title {
    font-weight: bold;
    font-size: 1.5rem;
    padding-top: 0.5rem;
}    
.chat-container .text-area {
    padding: 1rem;
    height: 100%;
    background-color: #eeeaea;
    height: 300px;
    overflow-y: auto;
    max-height: 600px;
}
.chat-container .footer {
    padding: 1rem;
    height: 50px;
    background-color: #eeeaea;
    border-radius: 0 0 2rem 2rem;
    display: flex;
    position: relative;

}
.chat-container .text-input{
    display: relative;
}
.chat-container .footer input[type="text"] {
    flex: 1;
    width: 280px;
    height: 30px;
    padding: 0.5rem;
    border: none;
    border-radius: 3rem;
    flex-grow: 1;

}
.chat-container .footer button {
    padding: 0.6rem 1.1rem 1rem 1rem;
    width: 58px;
    height: 42px;
    background-color: #f1722d;
    color: white;
    border: none;
    border-radius: 10rem;
    cursor: pointer;
}

.chat-container .text-area .user-text {
    background-color: lightgrey;
    padding: 0.5rem;
    margin-left: 70px;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    align-self: left;
}

.chat-container .text-area .bot-response {
    background-color: #f1722d;
    padding: 0.5rem;
    text-color: white;
    margin-right: 70px;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    align-self: right;
    white-space: pre-line;
    max-width: 805
    line-height: 1.6;
}

.send-icon {
    color:white;
    width: 20px;

}
