.NavMenu-nav-item {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
    user-select: none;
    -webkit-user-drag: none;
}

    .NavMenu-nav-item:first-of-type {
        padding-top: 1rem;
    }

    .NavMenu-nav-item:last-of-type {
        padding-bottom: 1rem;
    }

    .NavMenu-nav-item nav-text {
        color: #ffffff;
        display: block;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .NavMenu-nav-item a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
    }

    .NavMenu-nav-item a.active {
        background-color: rgba(255,255,255,0.25);
        color: white;
    }

    .NavMenu-nav-item a:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
    }

@media (min-width: 640px) {
    .NavMenu-collapse {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}