.sidebar-content-wrapper {
    height: 100vh;
    width: 100%;
}

.sidebar {
    height: 100vh;
    background-color: #023a32;
    overflow-y: scroll;
}

.sidebar-item {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    text-decoration: none;
    color: white;
}

.sidebar-item:hover {
    background: green;
}

.sidebar-active {
    background: linear-gradient(to right, green 96%, rgb(221, 126, 2) 96%, rgb(221, 126, 2) 100%);
    color: white;
}

#statutory-bodies {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-content {
    height: 100vh;
    overflow-y: scroll;
}


@media all and (max-width: 992px) {
    #sidebar-top {
        height: 20px;
    }

    .adjust-2 {
        height: 0px;
        background-color: transparent;
    }

    .main-content,
    .sidebar {
        height: max-content;
    }
}

