.member-grid-container {
    display: grid;
    grid-template-columns: 3fr 7fr;
    grid-auto-rows: minmax(25px, auto);
    grid-row-gap: 20px;
    grid-column-gap: 10px;
    grid-template-areas: "picture description" 
                         "picture address" 
                         "picture extraInformation" 
                         "membernav membernav" 
                         "membercontent membercontent";
}

#picture {
    grid-area: picture;
}

#description {
    grid-area: description;
}

#address {
    grid-area: address;
}

#room {
    grid-area: room;
}

#email {
    grid-area: email;
}

#membernav {
    grid-area: membernav;
}

#membercontent {
    grid-area: membercontent;
}

@media screen and (max-width: 500px) {
    .member-grid-container {
        grid-template-columns: 1fr;
        grid-template-areas: "picture" "description" "address" "room" "email" "membernav" "membercontent";
    }
}


/* Add a gray background color to the top navigation */

.contentnav {
    background-color: #cecec2;
    overflow: hidden;
}


/* Style the links inside the navigation bar */

.contentnav a {
    float: left;
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}


/* Change the color of links on hover */

.contentnav a:hover {
    background-color: #ddd;
    color: black;
}


/* Add an active class to highlight the current page */

.contentnav a.active {
    background-color: #009440;
    color: white;
}


/* Hide the link that should open and close the contentnav on small screens */

.contentnav a.icon {
    display: none;
}

.contentnav a.icon:focus {
    outline: none;
    outline-offset:0px;
}

.contentnav a.icon.active {
    background-color: #cecec2;
    border: none;
    text-decoration: none;
}

.burgerbun {
    display: inline-block;
    cursor: pointer;
    width: 44px;
    height: 45px;
    border: none;
    text-decoration: none;
}

#burgerMenu 
{
    width: 100%;
    height: auto;
    margin: 2px 0;
}

.contact-form{
    background-color:#E1E1E1;
    padding:10px 10px;
    border-radius: 2px;

}

.contact-form input{ 
    width: 100%;
}



/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the contentnav (.icon) */

@media screen and (max-width: 500px) {
    .contentnav a:not(:first-child) {
        display: none;
    }
    .contentnav a.icon {
        float: right;
        display: block;
        z-index: 1;
        border: none;
        text-decoration: none;
    }
    
}


/* The "responsive" class is added to the contentnav with JavaScript when the user clicks on the icon. This class makes the contentnav look good on small screens (display the links vertically instead of horizontally) */

@media screen and (max-width: 500px) {
    .contentnav.responsive {
        position: relative;
    }
    .contentnav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
    }
    .contentnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}


.export-bibtex {
    float:left
}
 
.export-bibtex a {
    height: auto;
    font-size: 11.5px;
    font-weight:bold;
}

dt {
    margin-top: 1em;
}
 
dd {
     line-height: 1.5em;
     margin-bottom: 2em;
     margin-top: 1em;
     margin-left: 2em;
}
 
pre {
     font-family: Monaco, "Courier New", Courier, monospace;
     font-size: 100%;
     padding: 1em;
     border: 1px solid #8cacbb;
     color: Black;
     background-color: #DCDCD3;
     overflow: auto;
     line-height: 1.1em;
}
 
p {
   text-align: justify;
   text-justify: inter-word;
}
 
 
#publicationsFilters {
     padding: 4px 15px 4px 15px;
     margin-bottom:30px;
}
 
 
figcaption{
    background-color:#e5e5e5;
}
 
 
#portal-languageselector li{
   display: inline;
}
 
#portal-languageselector {
   float:right;
   position: relative;
   top: 8px;
   left: 0px;
   padding-right: 5px;
   margin-right:5px;
}
 
#portal-languageselector img{
   height:16px;
   width:21px
}
 
#portal-languageselector a{
   color:#ffffff
}
 
#searchGadget_form {
   position: absolute;
   z-index: 3;
   top: 2px;
   left: 0;
}
 
.contentnav {
     background-color: #f5f5f5;
}
 
.people_table tr:nth-child(odd) {
    background-color: #e5e5e5;
}

.people_table tr:nth-child(even) {
    background-color: white;
}

#directory_table tr:nth-child(odd) {
    background-color: #e5e5e5;
}

#directory_table tr:nth-child(even) {
    background-color: white;
}

/* th[class*='col-md'] {
    background-color: #c1c1c1;
    height: 1.5em;
    vertical-align: middle;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}

td {
    vertical-align: middle;

} */

th{
    background-color: #c1c1c1;
    height: 1.5em;
    vertical-align: middle;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}

tr:nth-child(even) {
    background-color: white;
}

tr:nth-child(odd) {
    background-color: #e5e5e5;
}


 
 
 
 
 
 
 
