.ps-app{
  display:flex;
  min-height:100vh;
}

.ps-sidebar{
  width:260px;
  flex:0 0 260px;
  padding:18px 14px;
  position:sticky;
  top:0;
  height:100vh;
  overflow:auto;
  background: rgba(10,14,30,.55);
  border-right:1px solid var(--ps-border);
  backdrop-filter: blur(14px);
}

.ps-shell{
  flex:1;
  display:flex;
  flex-direction:column;
  min-width:0;
}

.ps-topbar{
  height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 18px;
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(10,14,30,.55);
  border-bottom:1px solid var(--ps-border);
  backdrop-filter: blur(14px);
}

.ps-main{
  padding:22px;
  min-width:0;
}

.ps-main__inner{
  max-width:1200px;
  margin:0 auto;
}

/* Mobile */
.ps-topbar__burger{
  display:none;
}

@media (max-width: 980px){
  .ps-sidebar{
    position:fixed;
    left:-280px;
    transition:left .2s ease;
    z-index:50;
  }
  body.ps-sidebar-open .ps-sidebar{ left:0; }
  .ps-topbar__burger{ display:inline-flex; }
  .ps-main{ padding:16px; }
}
