body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
}

/* unvisited link */
a:link {
    color: gray;
    text-decoration: none;
}

/* visited link */
a:visited {
    color: gray;
    text-decoration: none;
}

/* mouse over link */
a:hover {
    color: lightgray;
    text-decoration: none;
}

/* selected link */
a:active {
    color: orange;
    text-decoration: none;
}

main {
      flex: 1;
      display: flex;
      flex-wrap: nowrap;
}

.left-col {
      flex: 0 0 20%;
      background-color: #f8f9fa;
      border-right: 1px solid #dee2e6;
}
    
.center-col {
      flex: 0 0 50%;
      background-color: #ffffff;
      border-right: 1px solid #dee2e6;
}

.right-col {
      flex: 0 0 30%;
      background-color: #f8f9fa;
}


.bebas-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
}

.work-label {
    font-family: "Slabo 27px", serif;
    font-size: 14px;
    color: gray;
}

.work-text {
    font-family: "Slabo 27px", serif;
    font-size: 16px;
    color: black;
}

.work-title {
    font-family: "Slabo 27px", serif;
    font-size: 18px;
    font-weight: 600;
    color: black;
}

/* backend */

 table.generic-view {
    border: 1px solid #000000;
    border-spacing: 0px;
    border-collapse: collapse;
    margin: 0px;
    padding: 0px;
    width: 100%;
    font-size: 9pt;
 }

 table.generic-view th {
    border: 1px solid #000000;
    margin: 0px;
    padding: 4px 4px 6px 4px;
    background-color: #ffffec;
    text-align: right;
    width: 20%;
    vertical-align: top;
 }

 table.generic-view td {
    border: 1px solid #999999;
    width: auto;
    margin: 0px;
    padding: 4px 4px 6px 4px;
    background-color: #ffffff;
    text-align: left;
    width: 80%;
    vertical-align: top;
 }

 table.generic-list {
    border: 1px solid #000000;
    border-spacing: 0px;
    border-collapse: collapse;
    margin: 0px;
    padding: 0px;
    font-size: 9pt;
    width: 100%;
 }

 table.generic-list th {
    border: 1px solid #000000;
    margin: 0px;
    padding: 4px 4px 6px 4px;
    background-color: #ffffec;
    text-align: left;
    vertical-align: top;
 }

 table.generic-list td {
    border: 1px solid #999999;
    width: auto;
    margin: 0px;
    padding: 4px 4px 6px 4px;
    background-color: #ffffff;
    text-align: left;
    vertical-align: top;
 }


/* end backend */

/* Hide left column on smaller or overflowed screens */
@media (max-width: 992px) {
      .left-col {
        display: none;
      }
     .center-col {
        flex: 0 0 70%;
     }
     .right-col {
        flex: 0 0 30%;
     }
}

footer.navbar {
  position: sticky;
  bottom: 0;
  z-index: 1030;
}

