.tag {
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 2px;
    padding-bottom: 3px;
    margin: 0 !important;
    background-clip: padding-box;
    display: inline-block;
    border-radius: 6px;
    box-sizing: border-box;
    align-items: center;
    line-height: normal;
    font-size: 0.9em;
    font-weight: 500;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.tag abbr {
    text-decoration: none;
    border-bottom: none;
}

[data-md-color-scheme="slate"] {
    .tag abbr {
        color: #cecece;
    }

    .tag {
        background-color: rgba(116, 116, 116, 0.115);
    }

    .tag:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

[data-md-color-scheme="default"] {
    .tag abbr {
        color: #242424;
    }

    .tag {
        background-color: rgba(116, 116, 116, 0.115);
    }
    
    .tag:hover {
        background-color: rgba(0, 0, 0, 0.1);
    }
}