div.members {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-rows: 99%;
    grid-template-columns: 30% 26%;
    grid-template-areas: "L P";
    gap: 2vw;

}

div.member_list {
    grid-area: L;
    margin-top: 1%;
    margin-bottom: 1vh;
    margin-left: 2%;
    width: 100%;
    height: 99%;
    background: var(--dialog_bg);
    background: transparent;
}

div.member_profile {
    grid-area: P;
    margin-top: 1%;
    margin-bottom: 1vh;
    margin-left: 2%;
    width: 100%;
    height: 20%;
    background: var(--dialog_bg);

    /*background: transparent;*/
}

.members_header {
    background: var(--header_bg);
    height: 5vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: whitesmoke;
    border-left: 1px solid var(--header_bg);
    border-left: 1px solid var(--dialog_bg);
    border-right: 1px solid var(--dialog_bg);
    border-top: 1px solid var(--dialog_bg);
}

div.member_content {
    width: 100%;
    height: 90%;
    background: var(--dialog_bg);
    overflow: auto;

}


div.profile_content {
    grid-area: P;
    margin-top: 1vh;
    margin-bottom: 1vh;

    width: 100%;
    height: 100%;
    background: var(--dialog_bg);
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: 50% 50%;
    grid-template-areas:
            "N N"
            "HP CP"
            "EM EM";
}


p.member {
    font-size: 1.5em;
    color: whitesmoke;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: .5rem;
    /*background:var(--header_bg);*/
}


.name {
    grid-area: N;
    //width: 100%;
    /*height: 100%;*/
}


.hphone {
    grid-area: HP;
    //width: 100%;
    /*height: 100%;*/
}

.cphone {
    grid-area: CP;
   // width: 100%;
    /*height: 100%;*/
}

.email {
    grid-area: EM;
}




table.memberlist {
    border-collapse: collapse;
    line-height: 2.0;
    width: 97%;
    margin:.5rem;
}

td {
    font-family: arial, sans-serif;
    color: navy;
    font-size: 1.2vw;
    padding-left: 4px;
}

td.address,
td.village,
td.hphone,
td.cphone,
td.email,
td.vid {
    display: none;
}

td.name {
    color: whitesmoke;
}




