@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #f7f7f7;
}

.chatBot {
    border: 3px solid #2F8D46;
    border-radius: 10px;
    margin: 50px auto;
    overflow: hidden;
    width: 500px;
    height: 600px;
    background: rgb(255, 255, 255);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

header {
    background-color: #2F8D46;
    text-align: center;
    padding: 10px 0;
}

header h2 {
    color: #fff;
}

.chatbox {
    padding: 15px;
    list-style: none;
    overflow-y: auto;
    height: 400px;
}

.chatbox li {
    margin-bottom: 10px;
}

.chat p {
    padding: 10px;
    border-radius: 10px;
    max-width: 70%;
    word-wrap: break-word;
}

.chat-outgoing p {
    background-color: #162887;
    color: #fff;
}

.chat-incoming p {
    background-color: #eaeaea;
}

.chat-input {
    padding: 10px;
    border-top: 1px solid #ccc;
}

.chat-input textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 7px;
    resize: none;
    outline: none;
    height: 71px;
}

#cross {
    float: right;
    cursor: pointer;
    color: white;
    font-weight: bolder;
    font-size: 28px;
}

#sendBTN {
    width: 100%;
    padding: 8px;
    border: 0;
    outline: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 7px;
    background-color: #2F8D46;
    cursor: pointer;
    color: white;
    margin-top: 12px;
}

.lastMessage {
    margin-top: 50px;
    font-size: 35px;
    font-weight: 600;
    color: darkgreen;
}
  
