.chat-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-height: 65vh;
}


.message {
    max-width: 75%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
}


.user-message {
    background: #007bff;
    color: white;
    align-self: flex-end;
}

.bot-message {
    background: #e0e0e0;
    color: black;
    align-self: flex-start;
}
.center{
   align-items: center;
   text-align: center;
}

.chat-footer {
    display: flex;
    padding: 10px;
    background: white;
    border-top: 1px solid #ccc;
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 300px;
    height: 55px;
}

.chat-footer input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 20px;
    outline: none;
}

.chat-footer button {
    position: absolute;
    right: -30px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
}


.imput_1{
    height: 10px;
    width: 200px;
}
