.sidebar.show {
    padding: 0 30px;
    padding-top: 20px;
    /* background-color: #E4E4E4; */
    border-right: 0.5px solid #e2e2e2;
    top: 70px;
    left: 0;
    bottom: 0;
    position: fixed;
    z-index: 1;
}

.sidebar.hidden {
    display: none;
}

.nav-component {
    font-size: medium;
    height: fit-content;
    background-color: transparent;
    letter-spacing: .5px;
    padding: auto;
    width: 100%;
    border: none;
    display: flex;
    color: black;
    align-items: center;
}

.nav-component:hover {
    border-radius: 5px;
    background-color: #dbdbdbc4;
    cursor: pointer;
}

.nav-component.selected {
    border-radius: 5px;
    background-color: #D4D4D4C4;
}

#nav-title {
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    border-bottom: 0.5px solid #8F8F8F;
}

#nav-title.nav-component:hover {
    background-color: transparent;
    cursor: default;
}