:root {
    --main_bg_color: #191c24;
    --main_bg_light: #191c24;
    --green_color: #6CCD32;
    --light_green: #6CCD3252;
    --blue_color: #062CBA;
    --black_color_light: rgba(0, 0, 0, 0.714);
    --white_color_light: #ffffff4f;
}


*{
    margin: 0px;
    padding: 0px;
    font-family: 'Quicksand', sans-serif;
    box-sizing: border-box;  
}
body{
    background-color: black !important;
    
}
p{
    margin: 0px !important;
    padding: 0px !important;
}

a{
    text-decoration: none !important;
    color: blue;
}

#body_container_outer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    

    
}


.body_container_main{
    width: 400px;
    height: 100vh;
    background-color: var(--main_bg_light);
    overflow: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer/Edge */
}
#header_main{
    width: 100%;
    background-color: var(--green_color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    border-radius: 0px 0px 10px 10px;
}
#header_main .header_left{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

#header_main .header_left .user_profile_header{
    width: 40px;
    height: 40px;
    background-color: rgb(0, 0, 0);
    border-radius: 100px;
    border: 2px solid green;
    background-size: cover;
    background-repeat: no-repeat;
}

#header_main .header_left .user_info_header{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 3px;
}
#header_main .header_left .user_info_header p{
    font-size: 13px;
}
#header_main .header_left .user_info_header .name{
    font-weight: bold;
    color: var(--black_color_light);
}

#header_main .header_left .user_info_header .fund{
    background-color: var(--white_color_light);
    color: black;
    border-radius: 100px;
    padding: 2px 13px !important;
}



#include_container_main{
    width: 100%;
    padding-bottom: 100px;
}

#footer_main{
    width: 400px;
    background-color: #6CCD32;
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: end;
    border-radius: 10px 10px 0px 0px;
}
#footer_main{
    width: 400px;
    background-color: #6CCD32;
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: end;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
#footer_main a img{
    border: 2px solid #ffffff69;
  border-radius: 100px;
}
#footer_main a svg{
    width: 25px;
}
#footer_main .scan_url{
    background-color: rgb(255, 255, 255);
    border-radius: 100px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
    box-shadow: 4px 4px 10px #000000c7;
    cursor: pointer;
}
#footer_main .scan_url svg{
    width: 25px;
}


#footer_main .user_setting_url{
    cursor: pointer;
}

#loading_elemetn_main{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255);
    gap: 10px;
}


.user_settings_profile_container_div{
    background-color: #6CCD32;
    position: absolute;
    right: 5px !important;
    bottom: 62px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 10px;
    display: none;

}
.user_settings_profile_container_div a{
    width: 100%;
    padding: 5px 10px;
    border-radius: 5px;
    color: black;
}
.user_settings_profile_container_div a:hover{
    background-color: #5abd21;
    color: black;
}

.header_data_title{
    color: #ffffffa1; 
    padding-bottom: 20px;
    font-size: 20px;
}

#home_main{
    width: 100%;
    padding: 20px 10px;
    position: relative;
}

@media only screen and (max-width: 400px) {
    .body_container_main{
        width: 100%;
    }
    #footer_main{
        width: 100%;
    }
  }