.chat-container {
    width: 472px;
    height: 65vh;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.chat-header {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: scroll;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}
.message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    max-width: 60%;
    position: relative;
    white-space: pre-line;
}
.message.sent {
    background-color: #DCF8C6;
    align-self: flex-end;
    text-align: right;
}
.message.received {
    background-color: #ececec;
    align-self: flex-start;
    text-align: left;
}
.chat-input {
    display: flex;
    border-top: 1px solid #ddd;
    /* position: sticky;
    top: 00px; */
}
.chat-input input {
    flex: 1;
    padding: 15px;
    border: none;
    outline: none;
}
.chat-input button {
    padding: 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}
.chat-input button:hover {
    background-color: #45a049;
}
.omnis-pagedpane noFocus {
    left: 45px;
}