/**
 * MUAADH USER — User profile / account UI
 * Single source extracted from muaadh-core.css in Phase 13 Wave 16.
 * Owns: .muaadh-user-table, .muaadh-user-image, .muaadh-user-card, etc.
 */


/* ============================================================================
 * APPENDED (Phase 13 Wave 16 — 2026-05-13): rules pulled from muaadh-core.css
 * ============================================================================ */

.muaadh-user-table {
  width: 100%;
}

.muaadh-user-table table {
  min-width: max-content;
}

.muaadh-user-table .view-action-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .muaadh-user-table .muaadh-view + .muaadh-edit/.muaadh-delete scoped rules
   removed 2026-05-19. Action buttons inside .muaadh-user-table now use the
   canonical .muaadh-action --primary/--danger --icon. */

.muaadh-user-table th {
  background-color: var(--theme-bg-light);
  text-align: center;
  padding: var(--space-5) var(--space-4);
}

.muaadh-user-table th .header-name {
  color: var(--theme-primary);
}

.muaadh-user-table td {
  text-align: center;
  vertical-align: middle;
  padding: var(--space-5) var(--space-4);
}

.muaadh-user-table td.address,
.muaadh-user-table td .address {
  max-width: 280px;
}

.muaadh-user-table td.message,
.muaadh-user-table td .message {
  max-width: 374px;
}

.muaadh-user-table td.subject,
.muaadh-user-table td .subject {
  max-width: 227px;
}

.muaadh-user-table td.actions,
.muaadh-user-table td .actions {
  max-width: 118px;
}

.muaadh-user-table td .muaadh-table-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.muaadh-user-select-all { user-select: all; }

