.affiliation_extra_info {
    display: none;
}

.affiliation_extra_info p {
    margin: 0 !important;
}

.custom_bio_text {
    display: none;
}

.affiliation_extra_button, .affiliation_bio_button {
    width: fit-content;
    display: flex;
    user-select: none;
    margin-bottom: 3px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.affiliation_extra_button:hover, .affiliation_bio_button:hover {
    cursor: pointer;
    background-color: var(--affiliation-button-highlight-color);
    border-bottom-color: var(--affiliation-button-highlight-color);
}

.affiliation_extra_button_icon {
    width: 16px;
    height: 16px;
    margin: auto 0;
    -webkit-user-drag: none;
}

.affiliation_more_information {
    margin: 0 !important;   
    padding: 0 !important;
}

#custom_bio_layer {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: none;
    position: fixed;
}

#custom_bio_background {
    width: 100%;
    height: 100%;
    opacity: 67%;
    position: absolute;
    background-color: grey;
}

#custom_bio_panel_container {
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    pointer-events: none;
}

#custom_bio_panel {
    width: 90%;
    margin: 100px auto auto auto;
    border: gray 1px solid;
    max-width: 500px;
    pointer-events: all;
    background-color: white;
}
#custom_bio_panel p {
    margin: 0;
    padding: 20px;
}

#custom_bio_panel_top {
    display: flex;
    background-color: var(--affiliation-bio-panel-top-color);
}
#custom_bio_panel_top p {
    color: white;
    margin: 0;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
}

#custom_bio_panel_top_x {
    color: white;
    margin: auto 20px auto auto;
    font-size: 30px;
    user-select: none;
}
#custom_bio_panel_top_x:hover {
    cursor: pointer;
}

#custom_bio_panel_text {
    margin: 20px;
}

#custom_bio_panel_text p {
    padding: 0px;
}