/* HEADER */
/* .header {
    z-index: 10;
    position: sticky;
    top: 0;
    width: 100%;
    min-height: 70px;
    display: flex;
    padding-left: 10px;
    padding-right: 10px;
    padding-top:1px;
    padding-bottom: 2px;
    z-index: 999;
    border-bottom: solid 2px rgb(0, 169, 225, 0.5);
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
   */
  .statera-logo {
    width: 150px;
  }
  
  .navigation-bar {
    display: flex;
    padding: 5px;
    justify-content: space-between;
    width: 100%;
  }
  
  .navigation-buttons-container {
   display: flex;
   float: right;
   align-self: center;
   gap: 10px;
  }
  
  .nav-button {
    background: none;
    border: none;
    color: rgb(102, 102, 102);
    /* font-weight: lighter; */
    padding-bottom: 5px;
    outline: none;
  }
  
  .nav-button:hover {
    color: rgb(83, 83, 83);
    background-color: transparent;
    border-bottom: 2px solid rgb(0, 215, 160);
    padding-bottom: 5px;
    outline: none;
    border-left-width: 0;
    border-right-width: 0;
    border-top-width: 0;
  }
  
  .nav-button-active {
    color: rgb(83, 83, 83);
    background-color: transparent;
    border-bottom: 2px solid rgb(0, 215, 160);
    padding-bottom: 5px;
    outline: none;
    box-shadow: none;
    border-left-width: 0;
    border-right-width: 0;
    border-top-width: 0;
  }
  
  .nav-button-active:focus {
    outline: none;
    box-shadow: none;
    border-left-width: 0;
    border-right-width: 0;
    border-top-width: 0;
  }
  
  .header-logo-and-selector {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  