.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}
#sidebar {
    width: 250px;
    position: relative;
    z-index: 999;
    background: whitesmoke;
    color: #fff;
    transition: all 0.3s;
}
#sidebar .sidebar-header {
    color: black;
    padding: 18px;
    border-bottom: 1px solid lightgray;
}
#sidebar ul.components {
    padding: 15px;
}
#sidebar ul p {
    color: black;
    padding: 20px;
}
#sidebar ul li a {
    color: black;
    padding: 10px;
    display: block;
}
#sidebar ul li a:hover {
    color: lightgray;
}
ul ul a {
    font-size: 0.9em !important;
    padding-left: 20px !important;
    background: #6d7fcc;
}
#pageContent {
    width: 100%;
    padding: 40px;
    min-height: 100vh;
    transition:  all 0.3s;
    position: relative;
    top: 0;
    right: 0;
}
.activecomponent {
    color: #0d0d0d;
    background: #92badd;
}
div.coretext {
    text-align: justify;
}