body {
    background-color: rgb(17,17,17);
    font-family: Candara;
    color: #A0AABA;
}

input {
  color: #A0AABA;
}

a {
  color: skyblue !important;
  padding-left: 10px;
  font-size: 25px;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
  text-decoration: underline;
}

.label {
  font-weight: bold;
}

#menu {
  position: sticky;
  top: 14px;
  background-color: black;
  border: 2px solid white;
  z-index: 1;
  max-width: 1250px;
  text-align: center;
  margin: auto;
  margin-top: 20px;
}

.DateRangePickerInput {
  border-color: #A0AABA;
  border-radius: 30px;
  background-color: rgb(17,17,17);
  margin-left: 10px;
}

.DateInput {
  width: 90px;
  background: rgb(17,17,17) !important;
  border-radius: 30px;
}

.DateInput_input {
  background: rgb(17,17,17) !important;
  font-family: Candara;
  font-weight: bold;
  font-size: 16px;
  padding: 5px;
  padding-left: 8px;
  color: #A0AABA !important;
  border-radius: 30px;
}

.DateInput_input__disabled {
  font-style: normal;
}

.DateInput_input__abled {
  color: #A0AABA;
}

#h2hinput1, #h2hinput2{
  display: inline-block;
  width: 50%;
  padding-left: 20px;
  padding-right: 20px;
  color: #A0AABA !important;

}

#records {
  margin: 10px;
}

.dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner td, .dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner th {
  font-family: Candara;
  color: #A0AABA;
  background-color: rgb(17,17,17) !important;
  text-align: left;
}

.Select-value-label {
  color: #A0AABA !important;
  font-weight: bold;
  text-align: center !important;
}

.tabs_styles {
  height: auto !important;
}

.tab_style {
  color: #A0AABA !important;
  background-color: rgb(17,17,17) !important;
  font-weight: bold;
  font-size: 18px;
  padding: 5px !important;
}

.tab_selected_style {
  background-color: #007eff !important;
  color: gold !important;
  padding: 5px !important;
  border-color: gold !important;
}

.selection-area {
  border-style: solid;
  border-color: gold !important;
  border-radius: 10px;
  border-width: 1px;
}

* {
    box-sizing: border-box;
  }
  
  /* Create two equal columns that floats next to each other */
  .column2 {
    float: left;
    width: 50%;
    padding: 10px;
  }
  
  /* Clear floats after the columns */
  .row2:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 900px) {
    .column2 {
      width: 100%;
    }
  }

   /* Create three equal columns that floats next to each other */
   .column3 {
    float: left;
    width: 33.33%;
    padding: 10px;
  }
  
  /* Clear floats after the columns */
  .row3:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 1370px) {
    .column3 {
      width: 100%;
    }
  }

    /* Create 5 equal columns that floats next to each other */
    .column5 {
      float: left;
      width: 20%;
      padding: 10px;
    }
    
    /* Clear floats after the columns */
    .row5:after {
      content: "";
      display: table;
      clear: both;
    }
    
    /* Responsive layout - makes the ten columns stack on top of each other instead of next to each other */
    @media screen and (max-width: 1300px) {
      .column5 {
        width: 100%;
      }
    }


    /* Create 6 equal columns that floats next to each other */
    .column6 {
      float: left;
      padding: 5px 20px 5px 20px;
    }
    
    /* Clear floats after the columns */
    .row6:after {
      content: "";
      display: table;
      clear: both;
    }
    
    /* Responsive layout - makes the 6 columns stack on top of each other instead of next to each other */
    @media screen and (max-width: 500px) {
      .column6 {
        width: 100%;
      }
    }
