.svg-isolate {
    width: 40px;
    height: 40px;
    overflow: visible;

    &.cached::after {
        content: '';
        position: absolute;
        top: -5px;
        right: -10px;

        background-color: green;

        width: 20px;
        height: 20px;
        display: flex;

        mask-image: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/icons/bookmark-check-fill.svg");
        mask-size: cover;
        mask-repeat: no-repeat;
    }

    &.highlight {
        outline: 2px solid #ed3a3a;
    }
}