


#user_profile_container{
    display: flex;
    margin: auto;
}

#user_info_container{
    width: 100%;
}

#user_info_container{
}

#profile_image_container{
    display: grid;
    align-items: center;
    position: relative;
}

#profile_image{
    background-color: #5C6864;
    margin: auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 7px solid #FFEB3B;
    overflow: hidden;
}

#profile_image{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


#user_details_container{
    display:grid;
    grid-template-columns: 1fr;
    align-items: center;
    grid-gap: 20px;
}
.user_detail{
    display:flex;
    align-items: center;
    justify-content: space-between;
    background-color: #353d49;
    height: 100%;
    border-radius: 10px;
    padding:5px 15px;
    color: white;
}

.user_detail>h4{
    font-weight: normal;
}
.user_detail>h3{
    font-family: montserrat_bold;
}


#currency_details_container{
    margin-top: 30px;
    width: 100%;
    justify-content: center;
}
#currency_details_container>h1{
    text-align: center;
    width: 100%;
    font-size: larger;
    color:white;
    font-family: montserrat_bold;
}

.currency_detail{
    margin: 0 10px;
    margin-top: 10px;
    display: flex;
    height: 40px;
    align-items: center;
    width: fit-content;
    color: white;
    
}


.currency_detail>img{
    height: 100%;
}

#transaction_history_button{
    height: 45px;
    padding: 0px 10px;
    border-radius: 10px;
    background-color: #1E4EE0;
    color: white;
    width: 100%;
    margin-top: 70px;
    margin-bottom: 3px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: smaller;
}

#misc_buttons_container{
    width: 100%;
}

#misc_buttons_container>button{
    height: 35px;
    border-radius: 10px;
    background-color: #353d49;
    margin:3px 0;
    color: white;
}

#misc_buttons_container>a{
    display: flex;
    height: 35px;
    border-radius: 10px;
    background-color: #353d49;
    margin:3px 0;
    color: white;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: smaller;
}


#profile_image_overlay{
    width: 100%;
    height: 100%;
    background-color: transparent;
}

#profile_image_overlay:hover{
    
    background-color: #8d8d8d7a;
    cursor: pointer;
}

#qr_icon_container{
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    left: calc(50% + 25px);
    background-color: white;
    border-radius: 50%;
    border: 4px solid #FFEB3B;
    padding: 10px;
}

#qr_icon_container:hover{
    cursor: pointer;
}

#qr_icon_container>img{
    width: 100%;
    height: 100%;

}
