/* Fullscreen mode styles */
body.vipzone-fullscreen-mode {
  /* Hide WordPress UI */
  #wpcontent { margin-left: 0 !important; }
  #wpfooter { display: none !important; }
  #adminmenumain { display: none !important; }
  .wrap { margin: 0 !important; padding: 0 !important; }
  #wpadminbar { display: none !important; }
  html.wp-toolbar { padding-top: 0 !important; }
  
  /* Adjust app container */
  #app {
    height: 100vh !important;
    width: 100vw !important;
  }
  
  /* Set layout container to fixed position */
  .layout-wrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 1000 !important;
    background: var(--surface-ground) !important;
  }
} 