/**
 * YOOAdmin - Shell overrides (Focus mode)
 *
 * @package YOOAdmin
 */

/* Remove top offsets only when Focus is active */
html.wp-toolbar:has(body.yoo-focus) { padding-top: 0 !important; } /* requires :has support */
body.admin-bar.yoo-focus { margin-top: 0 !important; }

/* Fix mobile admin bar spacing in Focus mode */
@media screen and (max-width: 782px) {
  html.wp-toolbar:has(body.yoo-focus) { 
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  html.wp-toolbar { 
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  body.admin-bar.yoo-focus { 
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  /* Force remove all top spacing */
  body.yoo-focus.admin-bar {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  body.yoo-focus #wpcontent {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
}

/* Hide native chrome in Focus mode */
.yoo-focus #wpadminbar,
.yoo-focus #adminmenumain,
.yoo-focus #adminmenuwrap,
.yoo-focus #screen-meta,
.yoo-focus #screen-meta-links,
.yoo-focus #wpfooter {
  display: none !important;
}

/* Reset content wrappers spacing in Focus mode */
.yoo-focus #wpcontent,
.yoo-focus #wpbody,
.yoo-focus #wpbody-content {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

/* Seed header height variable with safe fallbacks */
:root {
  --yp-admin-header-h: var(--wp-admin--admin-bar--height, 72px);
}
