@import url('https://fonts.googleapis.com/css?family=Roboto+Slab|Barlow');

:root {
    --darkColor: #2b2828;
    --lightColor: lightgray;
    /*--highlightColor: #65a186;*/ /* blue from FEBio logo */
    /* --highlightColor: #2d53da;  */ /* green from FEBio logo */
    --highlightColor: #1e73be;  /* blue from febio.org */
   
}

body {
    margin: 0;
}

.header {
    height: 70px;
    width: 100%;
    display: block;
    background-color: var(--darkColor);

    margin: 0;
    padding: 0;

    position: fixed;
}

.header img {
    float: left;
    padding: 3px 10px;
}

.header h1 {
    font-size: 40px;
    color: white;
    line-height: 70px;

    margin: 0;
    padding: 0;

    font-family: 'Roboto Slab', serif;
}

.main {
    margin: 0;
}

#categoryList {
    height: 100%;
    width: 200px;
    position: fixed;

    list-style-type: none;
    margin: 0;
    margin-top: 70px;
    padding: 0;

    background-color: var(--lightColor);
    /* background-image: url(https://febio.org/site/uploads/greyzz_@2X.png);
    background-repeat: repeat; */

    font-size: 25px;
    font-family: 'Roboto Slab', serif;
}

#categoryList a{
    display: block;
    color: black;
    padding: 8px 16px;
    text-decoration: none;
}

#categoryList a:hover:not(.active){
    background-color: var(--darkColor);
    color: white;
}

#categoryList .active{
    background-color: var(--highlightColor);
    color: white;
}

#projectArea {
    padding: 1px;
    
    margin-left: 210px;
}

#projectList {
  list-style-type: none;
  padding-left: 0;
  margin-top: 80px;
}

.project {
  margin: 10px, 0px;
  margin-bottom: 10px;
  padding: 7px;
  padding-left: 12px;
  background-color: var(--lightColor);
  /* background-image: url(https://febio.org/site/uploads/greyzz_@2X.png);
  background-repeat: repeat; */

  border-radius: 25px;
  border-width: 3px;
  border-color: var(--lightColor);
  border-style: solid;

  font-family: 'Roboto Slab', serif;
  font-size: 25px;
  overflow: hidden;
  text-overflow: ellipsis;

  transition: border-color 0.2s;
}


.project:hover {
    border-color: var(--highlightColor);
}

.project.is-active {
    border-color: var(--highlightColor);
}


.project > * {
    font-family: 'Barlow', sans-serif;
    font-size: initial;
    font-weight: initial;
}

.buttonContainer {
    text-align: right;
}

.description, .owner, .tagsDiv, .publication{
    padding-top: 10px;
}

.projDetails {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}


.tagsDiv {
    display: flex;
    flex-wrap: wrap;
}

.tag {
    display: box;
    margin: 0px;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 1px 3px;

    border-radius: 5px;

    border-color: black;
    border-width: 1px;
    border-style: solid;

}

.button {
    padding: 10px 5px;
}

button {
    border-style: solid;
    border-color: black;
    border-width: 2px;
    border-radius: 10px;
    padding: 2px 5px;

    background-color: var(--lightColor);

    font-size: 15px;
    font-weight: bold;
    font-family: 'Barlow', sans-serif;
}

button:hover {
    color: white;
    border-color: var(--highlightColor);
    background-color: var(--highlightColor);
}

.row {
    display: flex;
}

.column {
    flex: 50%;
    padding: 10px;
}

table {
    width: 100%;
    /* Change these properties */
    --border: 2px solid black;
    border-radius: 10px;

    /* Don't change these properties */
    border-spacing: 0;
    border-collapse: separate;
    border: var(--border);
    overflow: hidden;

    margin-top: 10px;
}

/* Apply a border to the right of all but the last column */
table th:not(:last-child),
table td:not(:last-child) {
    border-right: 1px solid black;
}

/* Apply a border to the bottom of all but the last row */
table>thead>tr:not(:last-child)>th,
table>thead>tr:not(:last-child)>td,
table>tbody>tr:not(:last-child)>th,
table>tbody>tr:not(:last-child)>td,
table>tfoot>tr:not(:last-child)>th,
table>tfoot>tr:not(:last-child)>td,
table>tr:not(:last-child)>td,
table>tr:not(:last-child)>th,
table>thead:not(:last-child),
table>tbody:not(:last-child),
table>tfoot:not(:last-child) {
    border-bottom: 1px solid black;
}

th {
    text-align: center;
    color: white;
    background-color: var(--highlightColor);
    font-weight: bold;
    padding: 8px;
}

td {
    text-align: left;
    padding: 8px;
}

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