/**
 * Sandbox-specific styles for SheetRocks Web Platform
 * 
 * These styles are ONLY for the /sandbox/ app pages, not for docs or landing pages
 */
/* Fullscreen app layout - ONLY for sandbox */
html,
body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* Base Layout - Fullscreen App */
#app {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  /* Platform-specific layout configuration for web */
  --sheet-container-max-height: calc(100vh - 9rem - 0.0625rem);
  /* Platform flag: hide Salesforce "Open in new tab" button on web */
  --open-in-new-tab-display: none;
}
