.meeting-box {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

/* Make table stack on smaller screens */
@media (max-width: 767.98px) {
  table.bot-meeting thead {
    display: none; /* Hide the table headers */
  }

  table.bot-meeting tbody tr {
    display: block; /* Make each row block-level */
    margin-bottom: 1rem;
  }

  table.bot-meeting tbody td {
    display: flex; /* Make each cell a flex container */
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border: 1px solid #dee2e6; /* Optional: Add border for visibility */
  }

  table.bot-meeting tbody td::before {
    content: attr(
      data-label
    ); /* Use the data-label attribute for column headers */
    font-weight: bold;
    width: 50%; /* Adjust width as needed */
    text-align: left; /* Align the labels */
    padding-right: 0.5rem; /* Add spacing */
  }
}

.meeting-item .meeting-info-col {
  border-bottom: 2px dotted #eee;
}

.row .meeting-item:nth-child(odd) .meeting-time-col {
  background-color: #222;
  color: #fff;
}

.row .meeting-item:nth-child(even) .meeting-time-col {
  background-color: #383838;
  color: #fff;
}

.sidebar-item {
  border: #ddd solid 1px;
  margin-bottom: 1rem;
  padding: 1rem 1.275rem;
}

.archive-meeting {
  border-bottom: solid #ddd 1px;
  padding-bottom: 1.275rem;
  padding-top: 1rem;
}

.border-1 {
  border-bottom: solid #ddd 1px;
  padding-bottom: 1.275rem;
}

.profile-img {
  box-shadow: 0px 1px 20px 14px rgba(158, 158, 158, 0.2);
}

.board-status {
  font-weight: 700;
  text-transform: uppercase;
}

#meeting-search .wpgb-facet button.wpgb-reset {
  margin-bottom: 0;
}

/* General Styling for WP Grid Builder Facets */
.wpgb-facet {
  margin-bottom: 1rem;
}

/* Apply Bootstrap 4 styles to WP Grid Builder Facets */
.wpgb-facet select.wpgb-select,
.wpgb-facet .wpgb-search-facet input[type="search"],
.wpgb-facet .wpgb-autocomplete-facet input[type="search"] {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Style dropdown arrow like Bootstrap 4 */
.wpgb-facet select.wpgb-select:not([multiple]) {
  padding: 0.375rem 0.75rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='none' stroke='gray' stroke-width='.75' d='M2 0L0 2h4z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 8px 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Focus and Hover Effects */
.wpgb-facet select.wpgb-select:focus,
.wpgb-facet .wpgb-search-facet input[type="search"]:focus,
.wpgb-facet .wpgb-autocomplete-facet input[type="search"]:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Style for Select Dropdowns */
.wpgb-facet select {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none;
}

/* Style for Input Fields (Search, Number, Text) */
.wpgb-facet input[type="text"],
.wpgb-facet input[type="search"],
.wpgb-facet input[type="number"] {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

/* Style for Checkbox & Radio Buttons */
.wpgb-facet input[type="checkbox"],
.wpgb-facet input[type="radio"] {
  margin-right: 0.5rem;
}

/* Checkbox & Radio Label Styling */
.wpgb-facet label {
  font-size: 1rem;
  color: #212529;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

/* Style for Buttons (Apply, Reset, etc.) */
.wpgb-facet button,
.wpgb-facet .wpgb-reset {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: all 0.15s ease-in-out;
}

/* Primary Button (Apply Filter, etc.) */
.wpgb-facet button {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
}

.wpgb-facet button:hover {
  background-color: #0056b3;
  border-color: #004085;
}

/* Secondary Button (Reset Filters, etc.) */
.wpgb-facet .wpgb-reset {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #fff;
}

.wpgb-facet .wpgb-reset:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

/* Multi-Select Facets */
.wpgb-facet .wpgb-multiselect {
  width: 100%;
}

/* Range Slider */
.wpgb-facet .wpgb-slider {
  width: 100%;
}

.wpgb-facet .wpgb-slider input {
  width: 100%;
}

/* Inline Display for Checkbox & Radio Filters */
.wpgb-facet .wpgb-checkbox-group,
.wpgb-facet .wpgb-radio-group {
  display: flex;
  flex-wrap: wrap;
}

.wpgb-facet .wpgb-checkbox-group label,
.wpgb-facet .wpgb-radio-group label {
  margin-right: 1rem;
}

/* Spacing Fixes */
.wpgb-facet .wpgb-label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .wpgb-facet {
    width: 100%;
  }
}

.wp-block-query-loop.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; /* Adjust spacing between items */
}

.wp-block-post-template.col-md-4 {
  margin-bottom: 1.5rem;
}

/* Gold Underline */
.gold-underline {
    border-bottom: 2px solid #ffcc00;
    padding-bottom: .25em;
}

/* Upcoming Meetings */
.upcoming-meetings article + article {
    border-top: 1px solid #ddd;
    padding-top: 1em;
}

/* Person Committees */
.person-committee {
    line-height: 1.25;
    margin-top: 1em;
}

/* Single Committee Tax */
.other-terms-list {
    font-size: .875em;
}
@media screen and (min-width:768px) and (max-width:999px) {
    .other-terms-list {
        column-count:2;
    }
}
@media screen and (min-width:1000px) {
    .other-terms-list {
        column-count:3;
    }
}