.open .sidebar {
    inset-inline-start: 0 !important;
}

.open .overlay,
.open-files .overlay {
    display: block !important;
}

.overlay {
    background-color: #ffffff4f;
    backdrop-filter: blur(3px);
}

.chat-message-block ul {
    padding-inline-start: 10px !important;
}

@media screen and (max-width:1000px) {
    .sidebar {
        inset-inline-start: -100% !important;
        position: fixed !important;
        background-color: white;
        z-index: 999;
        box-shadow: 1px 1px 50px rgb(209, 206, 206);
    }

    .session-files {
        inset-inline-end: -100% !important;
        position: fixed !important;
        top: 0;
        bottom: 0;
        background-color: white;
        z-index: 1000;
        box-shadow: -1px 1px 50px rgb(209, 206, 206);
        transition: all 0.3s;
        width: 300px !important;
    }

    .open-files .session-files {
        inset-inline-end: 0 !important;
    }
}

.chat-bubble-received {
    position: relative;
    margin-left: 10px;
}

.chat-bubble-received::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #dee2e6;
}

.chat-bubble-received::after {
    content: "";
    position: absolute;
    left: -9px;
    top: 10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #fff;
}

.chat-bubble-sent {
    position: relative;
    margin-right: 10px;
}

.chat-bubble-sent::before {
    content: "";
    position: absolute;
    right: -10px;
    top: 10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #dee2e6;
}

.chat-bubble-sent::after {
    content: "";
    position: absolute;
    right: -9px;
    top: 10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #fff;
}