#custom-toolbar,
.trix-button-group {
    display: flex;
    gap: 4px;
}

.trix-button {
    background-color: #e7e7e7;
    padding: 2px 15px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.trix-button--icon-bold {
    font-weight: 900;
}

.trix-button--icon-italic {
    font-style: italic;
}

.trix-active {
    background-color: #e8d8e7;
}

.trix-button--icon-bullet-list {
    background-image: url(../img/ul.svg);
    background-size: 20px 16px;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -100px;
    overflow: hidden;
}
.trix-button--icon-number-list {
    background-image: url(../img/ol.svg);
    background-size: 20px 18px;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -100px;
    overflow: hidden;
}

trix-editor {
    background-color: #ffffff;
}
@media (min-width: 768px) {
    trix-editor {
        min-height: 15em;
    }
}
trix-editor b,
trix-editor strong {
    font-weight: bold;
}

trix-editor em,
trix-editor i {
    font-style: italic;
}

.text-danger {
    color: red;
}
