.chat-body-content {
    height: 100%;
    padding: 15px;
    position: relative;
    overflow: auto;
}
.chat-body-content .divider:first-child {
    margin-top: 0;
}
.divider {
    position: relative;
    display: flex;
    align-items: center;
    margin: 15px 0;
}
.divider span {
    padding: 0 10px;
    font-size: 11px;
    color: #6e7985;
}
.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #6e798573;
}
.msg-item .row + .row {
    margin-top: 5px;
}
.msg-item.reverse .row {
    flex-direction: row-reverse;
}
.msg-item .row {
    align-items: center;
    flex-wrap: nowrap;
    max-width: calc(100% - 26px);
}
.msg-item.reverse + .reverse {
    margin-top: 5px;
}
.msg-item.reverse {
    flex-direction: row-reverse;
}
.msg-item + .msg-item {
    margin-top: 20px;
}
.msg-item {
    display: flex;
}
.msg-item.reverse .msg-body {
    align-items: flex-end;
}
.msg-item .msg-body {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.msg-item.reverse .row {
    flex-direction: row-reverse;
}
.msg-item .row {
    align-items: center;
    flex-wrap: nowrap;
    max-width: calc(100% - 46px);
}
.msg-item.reverse .msg-bubble {
    background-color: #0076ff;
    color: #fff;
}

.msg-item.reverse .msg-bubble::before {
    right: -10px;
    border-color: transparent #0076ff transparent transparent;
    transform: none;
}

.msg-bubble {
    padding: 12px 15px;
    background-color: #31323b;
    border-radius: 6px;
    line-height: 1.42;
    word-break: break-all;
}

.msg-bubble::before {
    content: "\A";
    border-style: solid;
    border-width: 10px 20px 10px 0;
    border-color: transparent #31323b transparent transparent;
    position: absolute;
    bottom: -5px;
    transform: rotate(181deg);
    left: -10px;
}

.msg-item.reverse .msg-bubble span {
    color: rgba(255, 255, 255, 0.6);
}
.msg-bubble span {
    display: block;
    margin-top: 5px;
    font-size: 10px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #9ea7b1;
    text-align: right;
}
.supportBadges {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
