/* ==========================================================================
   Admin User Show
   Resource-scoped styles for the admin User show page. Everything else the
   page needs already exists: .lifecycle-hero / .lifecycle-resource-bar /
   .lifecycle-card / .lifecycle-status-pill (lifecycle_page.css), .stat-box /
   .stat-number (globals.css), and .box-timestamp-footer, including its
   .lifecycle-card margin correction (box-footer.css). This file adds only
   the User-specific hero accent gradient and the email cell wrapping fix.
   ========================================================================== */

.lifecycle-hero.is-user {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

[data-theme="dark"] .lifecycle-hero.is-user {
  background: linear-gradient(135deg, #1e3253 0%, #131f36 100%);
}

/* Grid items default to min-width: auto, which lets the email address
   (no break opportunities) grow its column past the grid's track width
   instead of wrapping inside it. */
.user-email-cell {
  min-width: 0;
}

.user-email-cell .is-static {
  overflow-wrap: break-word;
}
