html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    cursor: url('/static/images/cursor.png'), auto;
}

.dashboard-layout {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(131deg, #000000, #191919);
}

.sidebar {
    width: 16rem;
    flex-shrink: 0;
    height: 100vh;
    overflow-y: auto;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.dashboard-content {
    flex: 1;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.dashboard-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100%;
}

.dashboard-layout{
    display:flex;
    min-height:100vh;
}

.sidebar{
    width:260px;
    padding:var(--space-6);
    border-right:1px solid #1e1e1e;
}

.sidebar_header{
    font-size:var(--text-sm);
    color:#ffffff66;
    margin-bottom:var(--space-2);
    text-transform:uppercase;
}

.sidebar_link{
    display:block;
    padding:var(--space-2) 0;
    color:white;
    text-decoration:none;
}

.sidebar_link.active{
    color:white;
    font-weight:600;
}

.sidebar_link:hover{
    opacity:.7;
}

.dashboard-content{
    flex:1;
    overflow-y:auto;
    padding:var(--space-7);
}