#account-drawer-button {
    cursor: pointer;
    height: 50px;
    width: 50px;
    margin-right: 10px;
}

#account-drawer {
    max-height: 600px;
    overflow-y: auto;
    
    border-radius: 25px;
    margin-top: 25px !important;
    background-color: #252525;
    color: white;
    box-shadow: 0px 0px 20px black;
    display: none;
    position: absolute;
    width: 450px;
    right: 10px;
    top: 65px;
    z-index: 100;
}

@media (max-width: 500px) {
    #account-drawer {
        right: 0px;
        width: 100%;
        top: 50px;
    }
}

#account-drawer h6 {
    margin-bottom: 20px;
}

#account-drawer h2 {
    margin-bottom: 20px;
}

.profile-picture {
    height: 100px;
    width: 100px;
    margin-bottom: 20px; 
}

.manage-account-button {
    border-radius: 25px 0px 0px 25px;
    background-color: black;
    border: 0;
    margin-right: 2px;
    padding: 15px;
}

.logout-button {
    border-radius: 0px 25px 25px 0px;
    background-color: black;
    border: 0;
    margin-left: 2px;
    padding: 15px;
}