/* کارفرمایان */
.clients-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.clients-header h1 {
    font-size: 18px;
    margin: 0;
}

.clients-header-actions {
    margin-right: auto;
    display: flex;
    gap: 8px;
}

.clients-table-card table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 13px;
}

.clients-table-card thead th {
    position: sticky;
    top: 0;
    background: var(--card-bg);
    z-index: 1;
    font-weight: 800;
    font-size: 13px;
    color: var(--text-main);
}

.clients-table-card th,
.clients-table-card td {
    padding: 12px 12px;
    border-bottom: 1px solid var(--border-soft);
    text-align: right;
}

.clients-table-card thead th:first-child {
    border-top-right-radius: var(--radius-lg);
}

.clients-table-card thead th:last-child {
    border-top-left-radius: var(--radius-lg);
}

.client-type-badge {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: #ecfeff;
    color: #0369a1;
}
