.chat-float-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    font-size: 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-popup {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 300px;
    z-index: 999;
    border-radius: 12px;
}


.chat-message {
    display: flex;
    margin-bottom: 5px;
}

.chat-right {
    justify-content: flex-end;
}

.chat-left {
    justify-content: flex-start;
}

.message-bubble {
    max-width: 70%;
    padding: 8px 12px;
    border-radius: 20px;
    background-color: #e2e3e5;
    color: #000;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.chat-right .message-bubble {
    background-color: #d1e7dd;
    text-align: right;
}

.chat-left .message-bubble {
    background-color: #f8d7da;
    text-align: left;
}

.sender {
    font-size: 0.8rem;
    display: block;
    opacity: 0.7;
}


.chat-message {
    margin-bottom: 10px;
    /* max-width: 80%; */
    padding: 8px 12px;
    border-radius: 10px;
    clear: both;
}

.chat-right {
    background-color: #d1e7dd;
    float: right;
    text-align: right;
}

.chat-left {
    background-color: #f8d7da;
    float: left;
}

