/**
 * M-ADMIN-FULLBLEED #8443 (2026-04-29) — admin DT pages full-bleed layout.
 *
 * Hides the Logistik theme chrome (breadcrumb / header / footer / live-chat)
 * on /clerks-admin/admin-organizations/ and /clerks-admin/admin-users/ so
 * the DataTable + KPI cards fill the viewport like a real admin app.
 *
 * Scope: body.admin-fullbleed (added by class-admin-organizations.php +
 * class-admin-users.php via the body_class filter, ONLY on these 2 pages).
 *
 * @author Olivier RAVEAU - Oliv.Ai 🥷
 */

/* ══════════════════════════════════════════════════════════════
   HIDE theme chrome on admin DT pages
   ══════════════════════════════════════════════════════════════ */
body.admin-fullbleed .breadcumb-wrapper,
body.admin-fullbleed .breadcrumb-wrapper,
body.admin-fullbleed > header,
body.admin-fullbleed header.site-header,
body.admin-fullbleed header#masthead,
body.admin-fullbleed > footer,
body.admin-fullbleed footer.site-footer,
body.admin-fullbleed footer#colophon,
body.admin-fullbleed .elementor-location-header,
body.admin-fullbleed .elementor-location-footer,
body.admin-fullbleed .menu-top-bar {
    display: none !important;
}

/* ══════════════════════════════════════════════════════════════
   RESET margin-top reserved by WP for admin bar — admin bar is
   already hidden via body.modal-open in dms-badges.css, but on
   the admin DT page (no modal open) WP still reserves 32 px.
   ══════════════════════════════════════════════════════════════ */
body.admin-fullbleed.admin-bar {
    margin-top: 0 !important;
    padding-top: 32px !important; /* keep adminbar visible space */
}
html.admin-fullbleed-html-fix {
    margin-top: 0 !important;
}

/* ══════════════════════════════════════════════════════════════
   Make the DT wrapper fill the viewport width
   ══════════════════════════════════════════════════════════════ */
body.admin-fullbleed .container,
body.admin-fullbleed .container-fluid,
body.admin-fullbleed main,
body.admin-fullbleed #primary,
body.admin-fullbleed .site-main,
body.admin-fullbleed .entry-content {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
}

/* ══════════════════════════════════════════════════════════════
   Tighten the page title spacing now that breadcrumb is hidden
   ══════════════════════════════════════════════════════════════ */
body.admin-fullbleed .entry-header,
body.admin-fullbleed .page-header {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
}
