#fwb-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#fwb-button {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

#fwb-button img {
    width: 32px;
    height: 32px;
}

#fwb-popup {
    display: none;
    background: #e5ddd5;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
}

#fwb-popup-header {
    background: #075e54;
    color: #fff;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    display: flex;
    justify-content: space-between;
}

#fwb-popup-name {
    font-weight: bold;
}

#fwb-popup-status {
    font-size: 12px;
    color: #d3f3d3;
}

#fwb-fake-chat {
    padding: 15px;
}

.fwb-message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 7.5px;
    max-width: 80%;
}

.fwb-message-received {
    background-color: #dcf8c6;
    align-self: flex-start;
}

#fwb-chat-now {
    display: block;
    background: #25D366;
    color: white;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    border-radius: 0 0 5px 5px;
}
