.chatBody::-webkit-scrollbar {
    width: var(--scrollbar-width);
}

.chatBody::-webkit-scrollbar-track {
    box-shadow: var(--scrollbar-track);
    border-radius: var(--scrollbar-track-border-radius);
}

.chatBody::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb-background);
    outline:  var(--scrollbar-thumb-outline);
    border-radius: var(--scrollbar-thumb-border-radius);
}

.chatbox-popup {
    display: flex;
    flex-direction: column;
    position: absolute;
    height: 98vh;
    width: 97% !important;
    right: 5px;
    bottom: 6px;
    /* background-color: var(--body-background-color); */
    border-radius: var(--popup-border-radius);
    border: var(--popup-border);
    border-radius: 10px;
    box-shadow: 0 0 5px 1px #666666;
    background-color: #f9f9f9;
}


.chatbox-popup .chatbox-popup__main {
    padding-top: var(--body-main-top-clearance) !important;
    box-sizing: border-box;
    border-bottom: none;
    width: 99%;
    height: var(--body-height);
    padding: calc(2 * 16px) 16px;
    text-align: center;
    overflow-y: var(--body-scroller);
    overflow-x: hidden;
    background: #f9f9f9;
}