/* User Profile Page - Dark Theme */
.user-profile-page,
.users-list-page {
  max-width: 1000px;
}

.user-info-section,
.identities-section,
.roles-section {
  margin-bottom: 2rem;
}

.user-info-section h3,
.identities-section h3,
.roles-section h3 {
  color: var(--text-primary);
  border-bottom: 2px solid var(--accent-red);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.user-info-table,
.identities-table,
.roles-table,
.users-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-primary);
  color: var(--text-primary);
}

.user-info-table th {
  text-align: left;
  padding: 0.75rem;
  width: 200px;
  color: var(--text-secondary);
  font-weight: 500;
}

.user-info-table td {
  padding: 0.75rem;
  color: var(--text-primary);
}

.identities-table th,
.roles-table th,
.users-table th {
  background: var(--bg-secondary);
  color: var(--text-primary);
  text-align: left;
  padding: 0.75rem;
  border-bottom: 2px solid var(--border-primary);
  font-weight: 600;
}

.identities-table td,
.roles-table td,
.users-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border-primary);
}

.identities-table tr:hover,
.roles-table tr:hover,
.users-table tr:hover {
  background: var(--bg-hover);
}

/* (empty-state, loading-state, badge, alert — defined in components.css) */

/* Search + Pagination */
.users-search-bar {
  margin-bottom: 1rem;
}

.users-search-bar input {
  width: 100%;
  max-width: 400px;
  padding: 0.5rem 0.75rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-radius: 4px;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.users-search-bar input:focus {
  outline: none;
  border-color: var(--accent-red);
}

.users-count {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.pagination-info {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

