
body {
    width: 100vw;
    height: 100vh;
    overflow-y: hidden;
}

.w3-padding {
    width: 100%;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 0;
}

.body-with-sidebar {
    display: flex;
    flex: row nowrap;
}

.sidebar {
  width: 20vw;
  background-color: #D9D9D9;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-between;
  height: 100%;

}

.sidebar-top {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.sidebar-email {
    height: 20%;
    width: 90%;
    background-color: #D0D0D0;
    margin-top: 15px;
    padding: 10px 0;
}

.sidebar-email > * {
    margin-left: 10px;
}

.sidebar-menu {
    height: 100%;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: start;
    margin-left: 20%;
}

.sidebar-item {
    font-size: 1.25em;
    width: 100%;
    color: black !important;
    text-decoration: none; 
    padding: 10px 0;
}

.sidebar-bottom {
    width: 90%;
    margin-bottom: 25px;
    border-top: 3px solid #BABABA;
}

.sidebar-bottom a {
    font-size: 1.25em;
    display: block;
    width:90%;
    padding: 10px 0 0 20px;
    color: black !important;
    text-decoration: none; 
}


#dashboard {
    display: flex;
    flex-flow: row wrap;
    gap: 5%;
}

#dashboard li {
    text-align: center;
    width: 20%;
    background-color: lightcoral;
    list-style: none;
    padding:2%;
    margin-bottom: 2%;
    border-radius: 15px;
}
