@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');

body {
    font-family: 'Open Sans', 'Noto Sans', sans-serif;
    background: #fafafa;
    color: #333333;
    display: flex;
    flex-direction: column;
  }


main {
  min-height: 75vh;
  margin-top: 150px;  /* matches navbar height */
}

  
  h1, h2, h3, h4, h5, h6 {
    color: #444444;
  }

  .text-cissblue{
    color: #00587b;
  }

  .bg-cissblue{
    background-color: #00587b;
  }

  .bg-button-cissblue{
    background-color: #00587ba8;
  }

  .bg-cissorange{
    background-color: #C15826;  
  }

  .bg-cissgreen{
    background-color: #5F6C3F;
  }

  .bg-cissbrown{
    background-color: #6E5723;
  }


  .navbar {
    -webkit-box-shadow: 0 8px 6px -6px #999;
    -moz-box-shadow: 0 8px 6px -6px #999;
    box-shadow: 0 8px 6px -6px #999;
    height: 120px;
  } 

  .footer {
  -webkit-box-shadow: 0 8px 6px -6px #999;
  -moz-box-shadow: 0 8px 6px -6px #999;
  box-shadow: 0 8px 6px -6px #999;
  height: 90px;
  bottom:0
  }
  
  .site-header .navbar-nav .nav-link {
    color: #cbd5db;
  }
  
  .site-header .navbar-nav .nav-link:hover {
    color: #ffffff;
  }
  
  .site-header .navbar-nav .nav-link.active {
    font-weight: 500;
  }
  
  .content-section {
    background: #ffffff;
    padding: 10px 20px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .article-title {
    color: #444444;
  }
  
  a.article-title:hover {
    color: #428bca;
    text-decoration: none;
  }
  
  .article-content {
    white-space: pre-line;
  }
  
  .article-img {
    height: 65px;
    width: 65px;
    margin-right: 16px;
  }
  
  .article-metadata {
    padding-bottom: 1px;
    margin-bottom: 4px;
    border-bottom: 1px solid #e3e3e3
  }
  
  .article-metadata a:hover {
    color: #333;
    text-decoration: none;
  }
  
  .article-svg {
    width: 25px;
    height: 25px;
    vertical-align: middle;
  }
  
  .account-img {
    height: 125px;
    width: 125px;
    margin-right: 20px;
    margin-bottom: 16px;
  }
  
  .account-heading {
    font-size: 2.5rem;
  }


  /* remove bullets from forms */
 ul.form-control {
  list-style-type: none; /* Remove bullets */
  /* padding: 0; /* Remove padding */
  /* margin: 0; Remove margins */ 
  }

  /* table div to not show all  */
  #table-select{
    max-height: 200px;
    overflow-y: scroll
  }

  /* datatable */
  table.dataTable td {
    font-size: 0.8em;
  }


  /* tooltip */
  .tooltip-inner {
    max-width: 400px;
    /* If max-width does not work, try using width instead */
    /* width: 400px;  */
    /* text-align: left; */

    font-size: 14px;
    /* font-weight: bold; */
    line-height: 20px;
    position: relative;
    text-align: left;
    /* width: 20px; */
    /* opacity: 0.98; */
    /* background-color: #333; */
}

.tooltip {
  opacity: 0;
  transition: opacity 1s;
  font-family: 'Noto Sans', sans-serif;
  backdrop-filter: blur(30px);
}

tooltip:hover {
  cursor: help;
}

/* for inline checkboxes */
ul#state li{
  margin-left: 10px;
  margin-right: 10px;
}

/* ... */
.truncate {
  max-width:500px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate2 {
  max-width:250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* horizontal line */
hr {
  margin-top: 3rem;
  margin-bottom: 3rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}


/* nav */
a.toc{
  color: #5f788a;
}

a.toc:hover{
  color: #444444;;
}
