body {
  font: 400 16px / 1.6 "Poppins", sans-serif;
}

i {
  color: grey;
  padding-right: 2px;
}

/* Make the filter bar/container a wrapping flex row */
.filters_bar {
    width: 100%;
    box-sizing: border-box;
    padding: 8px; /* optional */
}

.filters_container {
    display: flex;
    flex-wrap: wrap;      /* allow items to move to next line */
    gap: 20px;             /* spacing between items */
    align-items: center;
    width: 100%;
}

.custom-dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: lightblue;
  color: black;
  padding: 10px 20px;
  font-size: 24px;
  border: solid 1px lightgrey;
  cursor: pointer;
}

.dropbtn.selected {
  background-color: darkcyan;
  color: white;
  border: none;
}

.dropdown-content {
  display: none; /* Hidden by default */
  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: 650px;
  overflow: scroll;
}

.dropdown-content span {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content span:hover {
  background-color: #f1f1f1;
}

.show {
  display: block; /* Shown when the .show class is present */
}

.page_title {
  font-size: 1.5em;
  font-weight: bold;
  margin: 10px 10px 0px 10px;
}

.results_count{
  margin: 0px 10px;
}

.meetings_list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin: 20px;
}

.meetings div {
  line-height: 1.25;
}
.meeting_item {
  border: 1px solid rgba(95, 119, 148, .2);
  border-radius: 20px;
  padding: 14px;
  cursor: pointer;
  background-color: ghostwhite;
  width: 550px;
}

.meeting_item:hover {
  background-color: aliceblue;
}

.meeting_item div {
  padding: 4px 0;
}

.loading_indicator{
  text-align: center;
  font-size: 40px;
  color: grey;
  display: none;
}

.meeting_name {
  font-size: 16px;
  font-weight: 600;
  color: darkblue;
}

.meeting_item .title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 0;
}

.meeting_item .value {
    padding-top: 0;
}

.meeting_location_address {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.meeting_day_time {
  display: flex;
}

.types_tags, .meeting_day_time, .results_count {
  gap: 8px;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
}

.tag {
  border-radius: 4px;
  font-size: 13px;
  background-color: rgba(95, 119, 148, .2);
  padding: 2px 6px;
}

.meeting_details_dialog {
  min-width: 500px;
  border-radius: 40px;
  border-width: thin;
}

.meeting_details_content {
  margin: 20px;
}

.detail_meeting_name {
  text-align:center
}

.details_row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: solid 0.5px lightgrey;
  margin-bottom: 4px;
}

#close_dialog {
  background-color: lightgrey;
  font-size: larger;
  border-width: thin;
  border-radius: 6px;
  width: 100px;
  height: 40px;
}