/* Times Card */
.iowpg-times-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
  background: #fff;
  max-width: 720px;
  margin: 0 auto 22px;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.06);
}
.iowpg-title {
  margin: 0 0 12px;
  color: #0b4a6f;
}
.iowpg-times-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.iowpg-times-grid h4 {
  margin: 0 0 6px;
  font-weight: 600;
  color: #075985;
}
.iowpg-time {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
}
.iowpg-note {
  margin-top: 10px;
  color: #475569;
  font-size: 13px;
}

/* Map + Filters */
.iowpg-map-wrap {
  margin: 18px 0 24px;
}
.iowpg-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 10px;
  align-items: center;
}
.iowpg-filters label {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 6px 10px;
  cursor: pointer;
}
.iowpg-filters input[type="checkbox"] {
  accent-color: #0ea5e9;
}

/* Leaflet container inherits inline height from shortcode */
#iowpg-map {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

/* Popup tags */
.iowpg-badge {
  display: inline-block;
  background: #e0f2fe;
  color: #075985;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 11px;
  margin-right: 6px;
}
