/*Hide the Conversation Export button*/
div[aria-labelledby="export-menu-button"] > button:last-child {
    display: none !important;
}

/*Hide the Edit Message button*/
.message-render
    > div:last-child
    > div:last-child
    > div:last-child
    > div
    > button:nth-of-type(3) {
    display: none !important;
}

/*Hide the Fork Conversation button*/
.message-render
    > div:last-child
    > div:last-child
    > div:last-child
    > div
    > button:nth-of-type(4) {
    display: none !important;
}

/*Banners styling*/
.banner {
    color: white;
    padding: 0.3em 1em 0.3em 1em;
    border-radius: 8px;
    font-size: smaller;
    text-wrap: wrap;
    display: block;
}
.banner-info {
    background: royalblue;
}
.banner-incident {
    background: coral;
}
.banner * {
    color: inherit !important;
}
