body {
    background-color: rgb(25,25,25);
    background-image: url('/static/images/homebackground-mobile.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    overflow: auto;
}

.topframecontainer {
    display: flex;
    background-color: rgb(25,25,25);
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 80px;
    box-shadow: 0px 0px 10px black;
}

.header-buttonsleft {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 20px;
}

.header-buttonsright {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 20px;
}

.defaultheaderbutton {
    transition-duration: 0.5s;
    background-color: rgb(40,40,40);
    border-radius: 10px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    box-shadow: 0px 0px 10px black;
    text-align: center;
    text-decoration: none;
    padding: 10px 15px 10px 15px;
    display: block;
    border: none;
}

    .defaultheaderbutton:hover {
        background-color: white;
        color: rgb(40,40,40);
    }

.header-buttons-imagebutton {
    background-color: transparent;
    text-decoration: none;
    display: flex;
    border: none;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.homepagepostcontainer {
    transition-duration: 0.5s;
    margin-top: 30px;
    background-color: rgb(30,30,30);
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
    height: 50px;
    border-radius: 20px;
    position: sticky;
    gap: 30px;
    box-shadow: 0px 0px 10px black;
}

.homepagepostcontent {
    position: absolute;
    width: 340px;
    height: 340px;
    top: 50px;
    left: 10px;
    background-color: white;
    border-radius: 10px;
}

.homepagepostcreatordiv {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.homepagepostposterimg {
    /*position: absolute;
            top: 10px;
            left: 40px;*/
    width: 30px;
    height: 30px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px black;
    align-items: center;
}

.homepagepostpostername {
    /*position: absolute;
            width: fit-content;
            height: 30px;*/
    display: flex;
    align-items: center;
    top: 10px;
    left: 80px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    text-decoration: none;
}

.homepagepostposterdateortime {
    position: absolute;
    width: fit-content;
    height: 30px;
    display: flex;
    align-items: center;
    top: 10px;
    right: 20px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    text-shadow: 0px 0px 10px black;
    text-align: right;
    background: linear-gradient(to right, #ff6ec4, #7873f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.homepagepostposterplace {
    width: fit-content;
    height: 30px;
    display: flex;
    align-items: center;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: gray;
    text-shadow: 0px 0px 10px black;
    text-align: right;
    justify-content: center;
}

.homepagepostcontainerholders {
    margin-top: 80px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

#sidemenubox {
    display: flex;
    background-color: rgb(25,25,25);
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 0px;
    left: -70%;
    width: 70%;
    height: 100%;
    box-shadow: 0px 0px 10px black;
    transition: left 0.5s ease;
    z-index: 1001;
    flex-direction: column;
    gap: 20px;
    touch-action: none;
    transform: translateX(0%);
}

.sidemenubutton {
    background-color: rgb(40,40,40);
    border-radius: 10px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    box-shadow: 0px 0px 10px black;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    padding-top: 10px;
    padding-bottom: 10px;
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
    display: flex;
    border: none;
    position: sticky;
    align-items: flex-start;
    transition-duration: 0.5s;
}

    .sidemenubutton:active {
        transform: scale(0.9);
    }

#sidemenuboxunderlay {
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 10px black;
    transition: left 0.5s ease;
    z-index: 1000;
    visibility: hidden;
}

#sidemenuboxlabel {
    display: flex;
    align-items: center;
    top: 10px;
    left: 10px;
    width: fit-content;
    height: 80px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    text-decoration: none;
}

#developernamelabel {
    display: flex;
    align-items: center;
    width: calc(100% - 10%);
    height: 60px;
    font-family: 'Inter';
    font-weight: bold;
    font-size: 30px;
    color: gray;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    margin-top: 20px;
}

#developermessage {
    display: flex;
    align-items: center;
    width: calc(100% - 10%);
    height: fit-content;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    text-decoration: none;
    word-wrap: normal;
    margin-top: 20px;
    line-height: 2;
}

#feedbackmessagebox {
    margin-left: 15px;
    width: 100%;
    height: 30px;
    background-color: rgb(40, 40, 40);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    box-shadow: 0px 0px 10px black;
    text-decoration: none;
    border: none;
    outline: none;
    resize: none;
    overflow: auto;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    word-wrap: normal;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
    padding-left: 8px;
    line-height: 2;
}

    #feedbackmessagebox::-webkit-scrollbar-track {
        background: transparent;
    }

#feedbackmessageboxholder {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    position: sticky;
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 20px;
}

#homepageuserdoesnotexistlabel {
    position: absolute;
    align-items: center;
    justify-content: center;
    display: flex;
    width: calc(100% - 30px);
    height: 100%;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 20px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: center;
    text-decoration: none;
}

#userprofilepicture {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    box-shadow: 0px 0px 10px black;
    align-items: center;
}

#userprofilediv {
    margin-left: 20px;
    margin-top: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

#userprofiledivtext {
    align-items: start;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

#userprofileusernameandplace {
    display: flex;
    width: fit-content;
    gap: 10px;
    align-items: center;
    justify-content: left;
}

#userprofiledivtextusername {
    display: flex;
    align-items: center;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 20px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    text-decoration: none;
}

#userprofiledivtextplace {
    width: fit-content;
    height: 40px;
    display: flex;
    align-items: center;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 20px;
    color: gray;
    text-shadow: 0px 0px 10px black;
    text-align: right;
    justify-content: center;
}

#userprofilepoints {
    display: flex;
    width: 100%;
    height: 40px;
    align-items: center;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    text-decoration: none;
    background: linear-gradient(to right, #ff6ec4, #7873f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    justify-content: left;
}

#userprofiledivpoints {
    display: flex;
    width: fit-content;
    gap: 10px;
    align-items: center;
    justify-content: left;
}

#homepagepostleaderboardlabel {
    position: fixed;
    top: 70px;
    left: 0px;
    margin-top: 30px;
    display: flex;
    width: 100%;
    height: 5%;
    align-items: center;
    justify-content: center;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 20px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: center;
}

#videoholder {
    position: fixed;
    left: 0px;
    top: 80px;
    width: 100%;
    height: calc(100% - 80px);
    display: flex;
    align-items: center; /* vertical centering */
    justify-content: center; /* horizontal centering */
    flex-direction: column;
}

#camera {
    height: calc(100% - 30px);
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
    margin: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px black;
}

#processbutton {
    transition-duration: 0.5s;
    background-image: linear-gradient(to right, dodgerblue, blue);
    border-radius: 10px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    box-shadow: 0px 0px 10px black;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px;
    width: fit-content;
    display: flex;
    border: none;
    align-items: center;
    margin-bottom: 30px;
}
    #processbutton:active {
        transform: scale(0.9);
    }

#bottomframecontainer {
    display: flex;
    background-color: transparent;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 80px;
}

#searchbar {
    margin-top: 30px;
    background-color: rgb(30,30,30);
    border-radius: 10px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    justify-content: center;
    text-decoration: none;
    padding-left: 10px;
    width: 45%;
    height: 40px;
    display: flex;
    border: 2px solid rgb(60,60,60);
    align-items: center;
    outline: none;
}

#searchbaroptionscontainer {
    margin-top: 80px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

#searchbar {
    margin-top: 30px;
    background-color: rgb(30,30,30);
    border-radius: 10px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 16px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    justify-content: center;
    text-decoration: none;
    padding-left: 10px;
    width: 100%;
    height: fit-content;
    display: flex;
    border: 2px solid rgb(60,60,60);
    align-items: center;
    outline: none;
    margin-left: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.searchbaroptionsregularcontainer {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

#nosearchresultsfoundlabel {
    margin-top: 30px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: rgb(40,40,40);
    text-shadow: 0px 0px 10px black;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    width: calc(100% - 30px);
    height: 40px;
    display: none;
    border: none;
    align-items: center;
    outline: none;
}

#nocameradiv {
    height: calc(100% - 30px);
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
    margin: 20px;
    border-radius: 10px;
    background-color: black;
    display: none;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: gray;
    text-shadow: 0px 0px 10px black;
    text-align: center;
    justify-content: center;
    align-items: center;
}

#signinpagemaincontainer {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(30,30,30,0);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#signinpagecomponents {
    background-color: rgba(30,30,30);
    border-radius: 10px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    display: flex;
    align-items: center;
    justify-content: center;
}

#userprofileoptions {
    background-color: transparent;
    border-radius: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

#userprofilecontentholder {
    margin-top: 80px;
    align-items: start;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

#userprofilebiodiv {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-top: 20px;
    display: flex;
    gap: 10px;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

#userprofilebiolabel {
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    max-width: 350px;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    justify-content: center;
    align-items: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

#userprofilebiofavleaf {
    align-items: center;
    font-family: 'Inter';
    font-weight: bold;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    text-decoration: none;
    background: linear-gradient(to right, rgb(100, 240, 100), rgb(100, 130, 100));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

#searchbarbutton {
    margin-right: 15px;
    margin-top: 30px;
    width: fit-content;
    height: fit-content;
    transition-duration: 0.5s;
    background: linear-gradient(to right, dodgerblue, blue);
    border-radius: 10px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    box-shadow: 0px 0px 10px black;
    text-align: center;
    text-decoration: none;
    display: flex;
    border: none;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
    #searchbarbutton:active {
        transform: scale(0.9);
    }


#searchbaritems {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 30px;
}

#header-buttonsrightPtslabel {
    text-decoration: none;
    display: none;
    border: none;
    width: fit-content;
    height: 40px;
    justify-content: center;
    align-items: center;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 20px;
    text-shadow: 0px 0px 10px black;
    text-align: right;
    background: linear-gradient(to right, #ff6ec4, #7873f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#signinbutton {
    width: fit-content;
    height: fit-content;
    transition-duration: 0.5s;
    background: linear-gradient(to right, dodgerblue, blue);
    border-radius: 10px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    box-shadow: 0px 0px 10px black;
    text-align: center;
    text-decoration: none;
    display: none;
    border: none;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

    #signinbutton:active {
        transform: scale(0.9);
    }

#useroptionsframe {
    position: absolute;
    top: 70px;
    right: -10px;
    width: 200px;
    height: 100px;
    background-color: rgb(30,30,30);
    border-radius: 10px;
    box-shadow: 0px 0px 10px black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 1001;
    transform: translateX(150%);
    transition: transform 0.5s ease;
}

.useroptionsframebutton {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 20px);
    height: calc(50% - 15px);
    background-color: rgb(30,30,30);
    border-radius: 10px;
    box-shadow: 0px 0px 10px black;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    border: none;
    text-decoration: none;
    transition-duration: 0.5s;
}
    .useroptionsframebutton:active {
        transform: scale(0.9);
    }

#signinpageformincorrectfieldlabel {
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: red;
    text-shadow: 0px 0px 10px black;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    width: 50%;
    height: fit-content;
    align-items: center;
    display: none;
}

#signinpagemaincontainer {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(25,25,25,0);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#signinpagecomponents {
    background-color: rgba(25,25,25);
    border-radius: 20px;
    width: calc(100% - 30px);
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0px 0px 10px black;
}

#signinpagelogodisplay {
    background-color: rgb(25,25,25);
    border-radius: 20px;
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

#signinpageform {
    background-color: rgb(25,25,25);
    border-radius: 20px;
    width: 100%;
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 30px;
}

#signinpageformlabel {
    font-family: 'Inter';
    font-weight: normal;
    font-size: 20px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    width: 50%;
    height: fit-content;
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.signinpagefield {
    background-color: rgb(30,30,30);
    border-radius: 10px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    justify-content: center;
    text-decoration: none;
    padding: 0px 10px;
    width: calc(50% - 10px);
    height: 40px;
    display: flex;
    border: none;
    align-items: center;
    outline: none;
    box-shadow: 0px 0px 10px black;
}

.signinpagelogin {
    transition-duration: 0.5s;
    background-image: linear-gradient(to right, dodgerblue, blue);
    border-radius: 10px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    justify-content: center;
    text-decoration: none;
    width: calc(50% + 10px);
    height: 40px;
    display: flex;
    border: none;
    align-items: center;
    outline: none;
    box-shadow: 0px 0px 10px black;
}

    .signinpagelogin:active {
        transform: scale(0.9);
    }

.signinpageotherlinks {
    border-radius: 10px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    justify-content: center;
    text-decoration: none;
    width: 50%;
    height: 20px;
    display: flex;
    border: none;
    align-items: center;
    outline: none;
    background: linear-gradient(to right, dodgerblue, blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#forgotpasswordpagecomponents {
    background-color: rgba(25,25,25);
    border-radius: 20px;
    width: calc(95% - 30px);
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0px 0px 10px black;
}

#forgotpasswordpagelogodisplay {
    background-color: rgb(25,25,25);
    border-radius: 20px;
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

#forgotpasswordpagecomponentssecond {
    background-color: rgba(25,25,25);
    border-radius: 20px;
    width: calc(95% - 30px);
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0px 0px 10px black;
}

#forgotpasswordincorrectfieldlabel {
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: red;
    text-shadow: 0px 0px 10px black;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    width: 50%;
    height: fit-content;
    align-items: center;
    display: none;
}

#forgotpasswordpageformlabel {
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: gray;
    text-shadow: 0px 0px 10px black;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    width: 85%;
    height: fit-content;
    display: flex;
    align-items: center;
    word-wrap: break-word;
}

#feedbackmessageboxbuttonsubmit {
    transition-duration: 0.5s;
    background: linear-gradient(to right, dodgerblue, blue);
    border-radius: 10px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    box-shadow: 0px 0px 10px black;
    text-align: center;
    text-decoration: none;
    padding: 10px 15px 10px 15px;
    display: block;
    border: none;
    margin-right: 15px;
}

#feedbackmessageboxbuttonsubmit:hover {
    color: rgb(40,40,40);
}

    #feedbackmessageboxbuttonsubmit:active {
        transform: scale(0.9);
    }

#userprofilemodifyframe {
    width: 200px;
    height: fit-content;
    padding: 10px;
    background-color: rgb(30,30,30);
    border-radius: 10px;
    box-shadow: 0px 0px 10px black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.userprofilemodifyframebutton {
    transition-duration: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: rgb(30,30,30);
    border-radius: 10px;
    box-shadow: 0px 0px 10px black;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    border: none;
    text-decoration: none;
}
    .userprofilemodifyframebutton:active {
        transform: scale(0.9);
    }

#userprofilemodifyunderlay {
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 10px black;
    z-index: 1000;
    opacity: 1;
    display: none;
    transition: opacity 0.5s ease;
    flex-direction: column;
}

#userprofileeditprofile {
    background-color: rgb(25,25,25);
    border-radius: 20px;
    width: fit-content;
    height: fit-content;
    display: none;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 30px;
    gap: 30px;
    z-index: 1001;
    opacity: 0;
    box-shadow: 0 0 10px black;
    transition: opacity 0.5s ease;
}

#userprofileeditprofilelabel {
    font-family: 'Inter';
    font-weight: normal;
    font-size: 20px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
}

.userprofileeditprofilefield {
    background-color: rgb(30,30,30);
    border-radius: 10px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    justify-content: center;
    text-decoration: none;
    padding-left: 10px;
    width: 100%;
    height: 40px;
    display: flex;
    border: none;
    align-items: center;
    outline: none;
    box-shadow: 0px 0px 10px black;
}

.userprofileeditprofilelogin {
    transition-duration: 0.5s;
    background-image: linear-gradient(to right, dodgerblue, blue);
    border-radius: 10px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    height: 40px;
    display: flex;
    border: none;
    align-items: center;
    outline: none;
    box-shadow: 0px 0px 10px black;
}

    .userprofileeditprofilelogin:active {
        transform: scale(0.9);
    }

.userprofileeditprofileguidelines {
    border-radius: 10px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    height: fit-content;
    display: flex;
    border: none;
    align-items: center;
    outline: none;
    background: linear-gradient(to right, dodgerblue, blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#userprofileeditprofiletextarea {
    background-color: rgb(30,30,30);
    border-radius: 10px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    justify-content: center;
    text-decoration: none;
    padding-top: 12.5px;
    padding-left: 12.5px;
    padding-bottom: 12.5px;
    max-width: 100%;
    width: 100%;
    height: 20px;
    display: flex;
    border: none;
    align-items: center;
    outline: none;
    box-shadow: 0px 0px 10px black;
    resize: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.userprofileeditprofiledropdown {
    background-color: rgb(30,30,30);
    border-radius: 10px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    justify-content: center;
    text-decoration: none;
    padding-left: 10px;
    width: calc(100% + 10px);
    height: 40px;
    display: flex;
    border: none;
    align-items: center;
    outline: none;
    box-shadow: 0px 0px 10px black;
}

.userprofileeditprofiledropdownoption {
    transition-duration: 0.5s;
    background-color: rgb(30,30,30);
    border-radius: 10px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    justify-content: center;
    text-decoration: none;
    padding-left: 10px;
    width: calc(100% + 10px);
    height: 40px;
    display: flex;
    border: none;
    align-items: center;
    outline: none;
    box-shadow: 0px 0px 10px black;
}

    .userprofileeditprofiledropdownoption:hover {
        transform: scale(0.9);
    }

#userprofileeditprofilefieldlabel {
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: red;
    text-shadow: 0px 0px 10px black;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    width: fit-content;
    height: fit-content;
    align-items: center;
    display: none;
}

#userprofilereport {
    background-color: rgb(25,25,25);
    border-radius: 20px;
    width: 20%;
    height: fit-content;
    display: none;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 30px;
    gap: 30px;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.5s ease;
    box-shadow: 0 0 10px black;
}

#userprofilereportlabel {
    font-family: 'Inter';
    font-weight: normal;
    font-size: 20px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
}

#userprofilereporttextarea {
    background-color: rgb(30,30,30);
    border-radius: 10px;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    justify-content: center;
    text-decoration: none;
    padding-top: 12.5px;
    padding-left: 12.5px;
    padding-bottom: 12.5px;
    max-width: 100%;
    width: 100%;
    height: 20px;
    display: flex;
    border: none;
    align-items: center;
    outline: none;
    box-shadow: 0px 0px 10px black;
    resize: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

#userprofilereportfieldlabel {
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: red;
    text-shadow: 0px 0px 10px black;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    width: fit-content;
    height: fit-content;
    align-items: center;
    display: none;
}

.userguidelineslistelement {
    display: flex;
    align-items: center;
    width: calc(100% - 10%);
    height: fit-content;
    font-family: 'Inter';
    font-weight: normal;
    font-size: 15px;
    color: white;
    text-shadow: 0px 0px 10px black;
    text-align: left;
    text-decoration: none;
    word-wrap: normal;
    margin-top: 20px;
    line-height: 2;
}

#userguidelineslistholder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    padding: unset;
    margin: unset;
}

#homepagepostcontaineruserholders {
    position: fixed;
    top: 140px;
    left: 0px;
    align-items: center;
    justify-content: start;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100% - 240px);
    max-height: calc(100% - 240px);
}

.termsofserviceinfocontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    padding: unset;
    margin: unset;
}

#canvas {
    width: 800px;
    height: 1000px;
}