.dashboard-layout {
    display: grid;
    grid-template-columns: 20% 60% 20%;
    width: 100%;
    min-height: 100vh;
}

/* Sidebar kiri */
.sidebar-left {
    position: sticky;
    top: 30px;
    height: calc(100vh - 40px);
    padding-bottom: 60px;
    background: #fff;
    overflow: hidden;
}

/* Konten utama */
.content-main {
    padding: 20px;
    min-height: 100vh;
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

/* Sidebar kanan */
.sidebar-right {
    position: sticky;
    top: 30px;
    height: calc(100vh - 30px);
    background: #fff;
}

.navmodul {
    border-bottom: 1px solid #e0e0e0;
    width: calc(100%) !important;
}