body {
    font-size: 18px;
    font-family: "Source Sans Pro", sans-serif !important;
    font-weight: 100 !important;
  }

  #map {
    margin: 10px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  }

  
#legend {
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

  #tooltip:empty {
    display: none;
  }
  
  #tooltip {
    font-size: 14px;
    position: absolute;
    padding: 5px;
    margin: 5px;
    background-color: #fff;
    max-width: 300px;
    z-index: 9;
    pointer-events: none;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  }  
  
  #inspect {
    margin-left: 10px;
  }

  #dropdown {
    display: inline-grid;
  }

  #hood-drop {
    padding: 10px;
  }

  #street-drop {
    padding: 10px;
  }

  .dropdown-button {
    background-color: #032765;
    color: white;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 100 !important;
    border: none;
    cursor: pointer;
    width: 300px;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    max-height: 500px;
    width: 300px;
    overflow: auto;
  }
  
  .dropdown-content a {
    color: black;
    padding: 1px 5px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    background-color: #f1f1f1
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  table th {
    border: none;
  }

  #table-container {
    padding-left: 5px;
    padding-top: 10px;
    max-height: 510px;
    height: 510px;
    overflow: auto;
  }
  
  #dropdown ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
  }
    
  #dropdown ::-webkit-scrollbar-thumb {
      border-radius: 4px;
      background-color: rgba(0,0,0,.5);
      -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
  }