/**
 * NutriDash — gestionale-override.css
 * CSS applicato SOLO sulla pagina con [ns_gestionale] (body.nd-gestionale-page)
 * NON modifica niente nelle altre pagine.
 */

/* ── Nasconde la sidebar del tema ─────────────────────────────────── */
body.nd-gestionale-page .nd-sidebar {
  display: none !important;
}

/* ── Il main occupa tutta la larghezza ───────────────────────────── */
body.nd-gestionale-page .nd-main {
  margin-left: 0 !important;
}

/* ── Nasconde la topbar del tema ─────────────────────────────────── */
body.nd-gestionale-page .nd-header {
  display: none !important;
}

/* ── Il content area occupa tutta l'altezza senza padding extra ──── */
body.nd-gestionale-page .nd-content {
  padding: 0 !important;
  overflow: hidden;
  height: 100vh;
}

/* ── Rimuove il card wrapper attorno allo shortcode ─────────────── */
body.nd-gestionale-page .nd-card {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
body.nd-gestionale-page .nd-card__body {
  padding: 0 !important;
}

/* ── Root React a piena altezza ──────────────────────────────────── */
body.nd-gestionale-page #root {
  height: 100vh;
  overflow: hidden;
}

/* ── Nascondi footer del tema ────────────────────────────────────── */
body.nd-gestionale-page .nd-footer,
body.nd-gestionale-page .nd-footer-widgets {
  display: none !important;
}

/* ── Overlay sidebar non necessario ─────────────────────────────── */
body.nd-gestionale-page .nd-sidebar-overlay {
  display: none !important;
}

/* ── Adatta nd-wrapper per non avere gap ────────────────────────── */
body.nd-gestionale-page .nd-wrapper {
  min-height: 100vh;
  overflow: hidden;
}

/* ── Admin bar WP: compensa l'offset ────────────────────────────── */
body.nd-gestionale-page.admin-bar .nd-content {
  height: calc(100vh - 32px);
}
@media screen and (max-width: 782px) {
  body.nd-gestionale-page.admin-bar .nd-content {
    height: calc(100vh - 46px);
  }
}
