.category-list-widget {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    li {
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        i {
            margin-right: 10px;
        }
        a {
            text-decoration: none;
            color: inherit;
            font-weight: bold;
        }
    }
}