.search-bar {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
  }

  .search-input {
    width: 80%;
    padding: 10px;
    border-radius: 10px 0px 0px 10px;
    transition: 0.5s;
    border:none;
    background-color: #c1c1c1;
  }

  .search-button {
    border: none;
    background-color: #3f51b5;
    color: white;
    padding: 10px;
    border-radius: 0px 10px 10px 0px;
  }

  .limit-select-size{
    display:inline;
    width:10%;
  }

  html,body{
    background-color: #242424;
    color: #c8c8c8;
    font-family: 'Quicksand';
    padding-bottom: 30px;
    transition:0.5s;
  }

  select{
    background-color: #959595 !important;
    border: none !important;
  }

  option{
    background-color: #c1c1c1;
  }

  .show-filter-button{
    cursor: pointer;
    color:#0e9af8;
    font-size: small;
  }

  ::selection {
    background: #027685; /* WebKit/Blink Browsers */
  }
  ::-moz-selection {
    background: #027685; /* Gecko Browsers */
  }

  .description-collapse{
    background-color: #323539 !important;
  }
  tr {
    transition: height 0.25s ease-in-out, opacity 0.25s ease-in-out;
  }
  .noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
  }

  #popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
    background-color: rgb(95, 95, 95);
    border-radius: 10px;
    padding: 30px;
    max-height: 90vh;
    overflow-y: scroll;
    box-shadow: rgba(0,0,0, 0.44) 0px 3px 8px;
  }
  @media (max-width: 768px) {
    #popup {
      width: 90vw;
    }
  }

  #backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
  }

  #close-button {
    position: absolute;
    top: 0;
    right: 0;
    padding-right: 20px;
    font-size: xx-large;
    background-color: transparent;
    border:none;
    color: white;
  }

  #popupunit{
    padding:5px;
    background-color: #323539;
    border-radius: 0px 5px 5px 0px;
  }

  #popupChartHolder{
    padding-bottom: 20px;
  }

  .report{
    background-color: #323539;
    padding: 30px;
    border-radius: 20px;
  }

  body{
    overflow-x: hidden;
  }