/**
 * users_admin.css — Panel użytkowników + słowniki
 * Wersja: v1.0.0
 */

.ua-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border, #e5e7eb);
  margin-bottom: 16px;
}
.ua-tab {
  padding: 8px 14px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  color: var(--muted, #6b7280);
}
.ua-tab.active {
  border-bottom-color: var(--primary, #2563eb);
  color: var(--primary, #2563eb);
  font-weight: 500;
}
.ua-panel.hidden { display: none; }

.ua-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.ua-table th, .ua-table td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--border, #e5e7eb); }
.ua-table th { background: var(--surface-2, #f9fafb); font-weight: 600; }
.ua-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.ua-btn {
  padding: 4px 10px;
  border: 1px solid var(--border, #d1d5db);
  background: var(--surface, #fff);
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}
.ua-btn:hover { background: var(--surface-2, #f3f4f6); }
.ua-btn.primary { background: var(--primary, #2563eb); color: #fff; border-color: var(--primary, #2563eb); }
.ua-btn.danger { background: #dc2626; color: #fff; border-color: #dc2626; }
.ua-pwd-banner {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 10px 12px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 14px;
  margin: 8px 0;
}
.ua-perm-row { display: flex; align-items: center; gap: 8px; padding: 4px 0; }
.ua-perm-row label { min-width: 200px; }
.ua-tree { padding-left: 16px; }
.ua-tree-item { padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.ua-cat-children { padding-left: 20px; border-left: 1px dashed var(--border, #d1d5db); margin-left: 8px; }
