.tagsList{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.tag{
    display: inline-block;
    padding: 0.3em 0.3em 0.4em 0.3em;
    font-size: .75em;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-align: center;
    vertical-align: top;
    border-radius: 50rem;
    margin: 0.1rem;
    background-color: var(--bs-indigo);
    text-decoration: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.tag:hover{
    background-color: #490bad;
    color: white;
}

.tag.active{
    box-shadow: 0 0 0 3px rgb(102 16 242 / 42%);
}

.tagsList > .addTestButton{
    background: var(--bs-indigo);
    color: white;
    width: 25px;
    height: 25px;
    margin-top: 1px;
}

.tagsList > .addTestButton:hover{
    background: #490bad;
}

.tagsList > .addTestButton > svg{
    width: 20px;
    margin-top: -3px;
}