.drawerContent {
    border-right: solid 1px rgba(0,0,0,0.1);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.signOut {
    margin-top: auto;
    border-radius: 0;
    font-size: 1rem;
    border-top: 1px dotted black;
}

.signOut.btn:focus {
    outline-style: dashed;
    outline-color: black; 
    box-shadow: 0 0 0 0.2rem rgba(240,128,128,0.25) !important;
}

.shadowScreen {
    min-width: 100%;
    min-height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    z-index: 4;
    display: none;
}

#navMenu {
    padding-top: 30px;
    padding-left: 0;
    font-size: 1rem;
}

#navMenu li {
    list-style-type: none;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
    padding-left: 30px;
    padding-right: 30px;
    border-top: 1px dotted;
    white-space: nowrap;
    transition: background-color 0.1s linear 0s;
}

#navMenu li:last-child {
    border-bottom: 1px dotted;
}

.currentLocation {
    background-color: lightblue;
}