.tags
{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag
{
    display: inline-block;
    padding: 6px 12px;
    background: #f5f5f5;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    color: #b00000;
    text-decoration: none;
    font-size: 14px;
    transition: all .15s ease;
}

.tag:hover
{
    background: #b00000;
    color: #fff;
    border-color: #b00000;
    text-decoration: none;
}

.tag.suggestie
{
    background: #fff8dc;
    border-color: #e3c84b;
    color: #8b6500;
}

.tag.suggestie:hover
{
    background: #e3c84b;
    color: #fff;
}