html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.jm-app-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.jm-sidebar {
    width: 260px;
    min-width: 260px;
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    z-index: 1030;
}

.jm-sidebar-menu {
    flex: 1;
}

.jm-sidebar .nav-link {
    color: #333;
    border-radius: .5rem;
    font-weight: 500;
    border-left: 4px solid #f8f9fa;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.jm-sidebar .nav-link.active,
.jm-sidebar .nav-link:hover {
    background-color: #fff9e6 !important;
    color: #0d1b2a !important;
    font-weight: 500;
    border-left: 4px solid #ffc107;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;}

.jm-main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

#main-content {
    min-height: calc(100vh - 70px - 50px);
}