html,body{
  margin:0;
  padding:0;
  height:100%;
  background:#06101d;
  overflow-x:hidden;
}

/* MAIN LAYOUT */
.layout{
  display:flex;
  min-height:100vh;
}

/* SIDEBAR FIX */
.sidebar{
  width:260px;
  min-width:260px;
  height:100vh;
  position:fixed;
  left:0;
  top:0;
  z-index:100;
}

/* CONTENT FIX */
.main{
  margin-left:260px;
  width:calc(100% - 260px);
  padding:20px 30px;
  box-sizing:border-box;
}

/* CONTENT CENTER */
.page{
  max-width:1500px;
  margin:0 auto;
  width:100%;
}

/* REMOVE EMPTY SPACE BUG */
main:empty{
  display:none;
}

/* FORCE GRID FIX */
.v2-layout,
.dashboard-grid{
  display:grid !important;
  grid-template-columns:2fr 1fr !important;
  gap:20px !important;
}

/* CARDS */
.v2-card,.v2-panel{
  border-radius:20px;
}

/* MOBILE */
@media(max-width:1000px){
  .sidebar{
    position:relative;
    width:100%;
    height:auto;
  }

  .main{
    margin-left:0;
    width:100%;
  }

  .v2-layout{
    grid-template-columns:1fr !important;
  }
}
