.state_title {
    color: black;
    font-weight: bold;
    font-size: 1.2em;
    padding-left: 10px;
}

.state_card {
    border-bottom: 2px solid black;
}

.metro_card_title {
    /* background-color: rgb(255 245 174); */
    background-color: rgb(180, 230, 255);
    /* padding-top: 5px; */
    /* padding-bottom: 5px; */
    border-top: 1px solid rgb(100, 100, 100);
    border-left: 1px solid rgb(100, 100, 100);
    border-right: 1px solid rgb(100, 100, 100);
    padding-left: 10px;
}

.metro_card_title button {
  font-size: 18px;
  color: rgb(0, 18, 183)
}

.metro_card {
    background-color: 2px solid blue;
}

.metro_card_content {
    /* background-color: rgb(240, 245, 255); */
    /* padding-bottom: 20px;   */
    /* padding: 10px; */
}

.metro_table {
}


.metro_table thead {
    font-size: 0.9em;
    font-weight: bold;
}

.metro_table tr {
  height: 24px;
}

.metro_table {
    font-size: 1.0em;
    margin-left: 20px;
}

.table_col_img {
  width: 35px;
}

.table_col_attribute {
    width: 300px;
}

.table_col_total {
    width: 100px;
    text-align: right;
}

.table_col_total_rank {
    width: 100px;
    text-align: right;
}

.table_col_other {
  width: 400px;
}

.table_col_per_capita {
    width: 100px;
    text-align: right;
}

.table_col_per_capita_rank {
    width: 100px;
    text-align: right;
}

.population_area_div {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 2px solid rgb(200, 220, 255);
    border-radius: 0.5em;
    padding: 10px;
    background-color: rgb(230,240,255);
    font-size: 1.4em;
}

.pie_chart_div {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 2px solid rgb(200, 220, 255);
    border-radius: 0.5em;
    padding: 10px;
    background-color: rgb(230,240,255);
}

.stacked_bar_chart_div {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 2px solid rgb(200, 220, 255);
    border-radius: 0.5em;
    padding: 10px;
    background-color: rgb(230,240,255);
    font-size: 1.4em;
}

.time_series_div {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 2px solid rgb(200, 220, 255);
    border-radius: 0.5em;
    padding: 10px;
    background-color: rgb(230,240,255);
}

.search_panel {
    /* border: 1px solid black; */
}

.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
  }
.search_metro_text  {
    border: 1px solid transparent;
    background-color: #f1f1f1;
    padding: 10px;
    font-size: 16px;
    width: 300px;
  }
.search_metro_text  {
    background-color: #f1f1f1;
    /* width: 100%; */
  }
  .search_metro_submit {
    background-color: DodgerBlue;
    color: #fff;
    padding: 10px;
  }

  .search_metro_submit:hover {
    background-color: rgb(113, 184, 255);
    color: #fff;
  }

  .autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
  }
  .autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
  }
  .autocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9;
  }
  .autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
  }

  #result {
    border: 1px dotted #ccc;
    padding: 3px;
  }
  #result ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  #result ul li {
    padding: 5px 0;
  }
  #result ul li:hover {
    background: #eee;
  }