/* to enable scrolling of the table if it gets to wide*/
  #contentWrapper{
  max-width:100% !important;
}

/* to have the footer 100% width*/
  
  section{
    width: 100% !important;
  }

/* to have everything grey until the bottom */
  
  html, body {
    height: unset !important;
  }

/* to get rid of select all button */
  select ~ .dropdown-menu .bs-actionsbox .bs-select-all {
    display: none;
  }

select ~ .dropdown-menu .bs-actionsbox .bs-deselect-all {
  width: 100%;
}


/* to have headers of pickerinput in specific way */
  li.dropdown-header {
    font-size: medium;
    color: var(--oenb-blau);
    margin: 0.5rem !important;
    margin-left: 1rem !important;
  }