.dash-nav {
    z-index: 800;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    align-self: flex-start;
    width: 250px;
    background-color: #FFF;
    padding: 10px;
    margin: 0 10px 0 0;
    box-sizing: border-box;
    box-shadow: 0 0 10px 0 var(--text-color);
    border-radius: 20px;
}

.dash-nav a {
    display: flex;
    padding: 5px 20px;
    border-radius: 15px;
    min-height: 40px;
    margin: 0 0 10px 0;
    align-items: center;
}

.dash-nav a:last-child {
    margin: 0;
}

.dash-nav .change-org-button {
    display: flex;
}

.dash-nav .change-org-button div:first-child {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .dash-nav {
        flex-grow: 1;
        align-self: auto;
        width: auto;
        margin: 0 0 10px 0;
    }
}