/* div_profile_page */
#div_profile_page {
    height: 100%;
    width: 100%;
    position: relative;
}

/* div_profile_top_bar */
#div_profile_top_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    height: 50px;
    z-index: 1100;
    top: 90px;
}

/* profile_top_bar_username */
#profile_top_bar_username {
    color: #fff;
    font-weight: bold;
    font-size: larger;
}

/* div_profile_banner */
#div_profile_banner {
    top: 100px;
    background: linear-gradient(45deg, #db8828, #672b83);
    height: 200px;
}

/* div_profile_page_background */
#div_profile_page_background {
    background-color: var(--color-feed);
    position: relative;
    width: 100%;
    height: 50px;
}

/* profile_page_picture */
#profile_page_picture {
    border-radius: 50%;
    border: 5px solid var(--color-feed);
    position: absolute;
    top: -75px;
    left: 20px;
    width: 128px;
    height: 128px;
}

#profile_page_username {
    position: absolute;
    top: -14px;
    left: 145px;
    color: #fff;
    padding: 20px;
    font-size: 32px;
    font-weight: bolder;
}

#profile_page_sub_username_bar {
    position: absolute;
    top: 40px;
    left: 148px;
}

#profile_page_sub_username_bar label {
    position: relative;
    color: rgba(255, 255, 255, 0.767);
    padding-right: 10px;
    font-size: 14px;
}

/* profile_page_bio_short */
#profile_page_bio_short {
    position: relative;
    color: #ffffff;
    padding: 5px 20px;
    font-size: large;
    text-indent: 20px;
}

#profile_page_edit_popup {
    overflow-y: scroll;
    z-index: 5000;
}

.profile_page_edit_popup_content {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translate(-50%, 0%);
    /* Centering trick */
    padding: 20px;
    padding-bottom: 10px;
    background-color: var(--color-popup);
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: baseline;

    width: min-content;
    min-width: 300px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.profile_page_edit_popup_content h3 {
    margin-top: 0px;
    margin-bottom: 10px;
    align-self: center;
    font-size: 27px;
}

.profile_page_edit_popup_content input,
textarea {
    margin-top: 1px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #a3a3a3;
    background-color: #ffffff;
    color: #000000;
    padding: 5px 8px;
    width: 95%;
}

.profile_page_edit_popup_content label {
    padding-left: 6px;
    display: inline-block;
}

.profile_page_edit_popup_content textarea {
    width: 95%;
    resize: vertical;
    /* Allow vertical resizing */
}

#profile_page_edit_popup_name {
    color: rgb(39, 39, 39);
    padding-left: 10px;
    margin-top: 2px;
    margin-bottom: 12px;
}

#profile_page_edit_popup_responses {
    margin-top: 10px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}