/* Define custom list types using pseudo-elements */
.changes-list {
    list-style-type: none;
}

/* Define custom list types using Bootstrap Icons */
.changes-list li.new:before {
    content: "\F64D";
    /* Codepoint for bi-plus-lg */
    font-family: "Bootstrap-Icons";
    margin-right: 5px;
    color: var(--bs-success);
}

.changes-list li.remove:before {
    content: "\F63B";
    /* Codepoint for bi-dash-lg */
    font-family: "Bootstrap-Icons";
    margin-right: 5px;
    color: var(--bs-warning);
}

.changes-list li.bug:before {
    content: "\F1DC";
    /* Codepoint for bi-bug */
    font-family: "Bootstrap-Icons";
    margin-right: 5px;
    color: var(--bs-danger);

}

.fade-image {
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1.0) 50%, transparent 100%);
}
