{% if not clients %}
{% from "components/ui.html" import empty_state %}
{% set actions %}
{% if current_user.is_admin %}
Create Your First Client
{% endif %}
Learn More
{% endset %}
{% if search or status != 'active' %}
{{ empty_state('fas fa-search', 'No Clients Match Your Filters', 'Try adjusting your filters to see more results. You can clear filters or create a new client that matches your criteria.', actions, type='no-results') }}
{% else %}
{{ empty_state('fas fa-users', 'No Clients Yet', 'Clients help you organize your projects and manage relationships. Create your first client to get started!', actions, type='no-data') }}
{% endif %}
{% endif %}