/* Planner-specific layout; colors and typography come from the main site. */
.planner-header {
  position: relative;
  padding: 2rem 7rem 1.5rem;
}
.planner-back {
  position: absolute;
  left: 1rem;
  top: 1.45rem;
  z-index: 3;
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
}
.planner-back:hover { text-decoration: underline; }
.planner-header .theme-toggle {
  position: absolute;
  right: 1rem;
  top: 1.25rem;
  z-index: 3;
}
.planner-header .header-brand { padding: 0 0.5rem; }
.planner-header .tagline { max-width: 46rem; margin-left: auto; margin-right: auto; }

#planner { max-width: 1600px; margin: auto; padding: 1.25rem 1.5rem 2rem; }
#planner h2 { margin: 0; font-size: 1.15rem; font-weight: 600; letter-spacing: -0.02em; }
#planner h3 { margin: 0; font-size: 1rem; font-weight: 600; }
#planner a { color: var(--accent); }
#planner button, #planner input, #planner select { font: inherit; }
#planner button { cursor: pointer; }
#planner button:disabled { opacity: 0.5; cursor: default; }
#planner :is(button, input, select, a, summary):focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
#planner [hidden] { display: none !important; }

.planner-tabs {
  position: sticky;
  top: 0;
  z-index: 12;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 0 0 1rem;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
}
.planner-tab {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  touch-action: manipulation;
}
.planner-tab[aria-selected="true"] {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
}
.planner-tab:hover:not([aria-selected="true"]) { color: var(--text); background: var(--btn-ghost-hover); }

.section-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.text-button { border: 0; background: transparent; color: var(--accent); padding: 0.3rem 0; font-size: 0.85rem !important; }
.text-button:hover { text-decoration: underline; }

.map-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.map-stage { position: relative; overflow: hidden; }
#map, #map-message { width: 100%; height: 64vh; min-height: 400px; max-height: 720px; }
#map { position: relative; background: var(--bg); overflow: hidden; }
#map > svg { display: block; width: 100%; height: 100%; touch-action: none; cursor: grab; }
#map > svg:active { cursor: grabbing; }
#map > svg:focus-visible { outline: 2px solid var(--accent); outline-offset: -3px; }
#map-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: var(--bg);
}
#map-message p { max-width: 460px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }
.map-symbol { font-size: 2.5rem; color: var(--accent); margin-bottom: 0.75rem; }

.map-controls {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  pointer-events: auto;
}
.map-fab {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
  font-size: 1.2rem !important;
  line-height: 1;
}
.map-fab:hover:not(:disabled) { background: var(--btn-ghost-hover); border-color: var(--accent); }
.map-fab-label { font-size: 0.78rem !important; font-weight: 600; padding: 0 0.65rem; }

.map-info {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 4;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
  font: 700 1rem/1 Georgia, 'Times New Roman', serif;
  font-style: italic;
  padding: 0;
}
.map-info:hover { border-color: var(--accent); color: var(--accent); }
.map-info[aria-expanded="true"] { border-color: var(--accent); color: var(--accent); }
.map-tips-popover {
  position: absolute;
  top: 3.4rem;
  left: 0.75rem;
  z-index: 6;
  width: min(22rem, calc(100% - 1.5rem));
  max-height: min(60%, 22rem);
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 0.95rem 0.95rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}
.map-tips-popover h3 { color: var(--text); font-size: 0.95rem; margin: 0 0 0.55rem; }
.map-tips-popover p { margin: 0; }
.map-tips-popover p + p { margin-top: 0.65rem; }

.map-legend {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0.7rem 0.85rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  box-sizing: border-box;
  pointer-events: none;
}
.map-legend li { display: flex; align-items: center; gap: 0.45rem; white-space: nowrap; }
.dot { width: 11px; height: 11px; border-radius: 50%; background: #7b5ee8; flex-shrink: 0; }
.dot.in-database { width: 11px; height: 11px; background: #3987ed; }
.dot.girls { background: #e56aa8; }
.dot.saved { background: #7b5ee8; box-shadow: 0 0 0 3px #e8b84a; }
.dot.home { background: #2ec4b6; }

.search-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.15rem 1.25rem 1.25rem;
  margin: 0 0 1.5rem;
}
#travel-form { display: grid; grid-template-columns: minmax(220px, 1fr) 180px auto; align-items: end; gap: 1rem; }
#planner label, #planner legend { font-size: 0.875rem; font-weight: 600; }
#planner label { display: block; }
#planner fieldset { padding: 0; margin: 0; border: 0; min-width: 0; }
#planner legend { margin-bottom: 0.5rem; padding: 0; }
#planner input:not([type=radio]):not([type=checkbox]),
#planner select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: 0.75rem;
  height: 47px;
  min-width: 0;
}
#planner input::placeholder { color: var(--text-muted); }
#planner select { width: 100%; }
#travel-form > div > input,
#travel-form > div > select { margin-top: 0.5rem; width: 100%; }
#miles-custom input { width: 7rem; }
.primary {
  color: var(--on-accent);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 0.65rem 1rem;
  white-space: nowrap;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
}
.primary:hover { background: var(--accent-hover); }
.segmented { display: flex; gap: 3px; padding: 4px; border: 1px solid var(--border); background: var(--bg); border-radius: 8px; height: 47px; }
.segmented label { position: relative; cursor: pointer; white-space: nowrap; }
.segmented input { position: absolute; opacity: 0; }
.segmented span { display: block; padding: 8px 12px; border-radius: 5px; color: var(--text-muted); font-weight: 500; }
.segmented input:checked + span { background: var(--surface); color: var(--accent); }
.segmented input:focus-visible + span { outline: 2px solid var(--accent); }
.micro { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; }
.export-help:empty { display: none; }
#travel-status { margin: 0.85rem 0 0; color: var(--accent); font-size: 0.875rem; }
#location-choices { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.85rem; }
.choice-chip {
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  text-align: left;
}
.choice-chip:hover { border-color: var(--accent); color: var(--accent); }

.workspace { min-width: 0; }
.filters { display: flex; gap: 0.75rem; margin: 0.9rem 0; }
.filters > div { flex: 1; min-width: 0; }
.filters select { font-size: 0.875rem !important; margin-top: 0.5rem; width: 100%; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.85rem; }
.filter-chips label {
  display: flex !important;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400 !important;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: var(--bg);
}
.filter-chips label:has(input:checked) {
  border-color: var(--accent);
  color: var(--text);
}
#planner input[type=checkbox] { accent-color: var(--accent); }
.count {
  display: inline-block;
  min-width: 25px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 2px 6px;
  color: var(--accent);
  font-size: 0.8rem;
  margin-left: 0.25rem;
}
.group-heading { margin: 1.35rem 0 0.65rem !important; color: var(--text-muted); font-size: 0.8rem !important; }
.list-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.35rem 0 0.85rem;
}
#competition-list .list-pager:last-child { margin: 1rem 0 0.25rem; }
.list-pager + .group-heading { margin-top: 0.35rem !important; }
.list-pager .text-button {
  min-height: 44px;
  padding: 0.45rem 0.65rem;
  font-weight: 600 !important;
}
.list-pager .text-button:disabled { text-decoration: none; opacity: 0.45; }
.list-pager-status {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}

.explore-actions { display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap; }
.schedule-filter {
  display: flex !important;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  height: 2.35rem;
  padding: 0 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  font-weight: 500 !important;
  white-space: nowrap;
  cursor: pointer;
}
.schedule-filter:has(input:checked) {
  border-color: var(--accent);
  color: var(--accent);
}
.view-toggle { height: 2.35rem; }
.view-toggle span { padding: 5px 10px; font-size: 0.8rem; }

.cal-wrap { scroll-margin-top: 1rem; }
#competition-list { scroll-margin-top: 4rem; }
.cal-toolbar { display: flex; align-items: center; gap: 0.45rem; margin: 0.35rem 0 0.85rem; }
.cal-month-label { flex: 1; text-align: center; font-size: 1.05rem !important; }
.cal-nav {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  font-size: 1.2rem !important;
  line-height: 1;
}
.cal-nav:hover { border-color: var(--accent); background: var(--btn-ghost-hover); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cal-dow {
  padding: 0.4rem 0.2rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
}
.cal-day {
  min-height: 5.6rem;
  padding: 0.28rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.2rem;
}
.cal-day.is-outside { background: var(--bg); }
.cal-day.is-outside .cal-date { opacity: 0.45; }
.cal-day.is-today { box-shadow: inset 0 0 0 2px var(--accent); }
.cal-date { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); padding: 0 0.15rem 0.1rem; }
.cal-event, .cal-more {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  border: 0;
  border-radius: 5px;
  padding: 0.18rem 0.35rem;
  font-size: 0.72rem !important;
  line-height: 1.3;
  background: #9860db33;
  color: var(--text);
}
.cal-event:hover, .cal-more:hover { filter: brightness(1.15); }
.cal-event.is-saved { background: #f0c261; color: #10131b; font-weight: 600; }
.cal-event.is-window, .cal-event.is-tentative { box-shadow: inset 0 0 0 1px var(--rank-mid); }
.cal-event.in-database { box-shadow: inset 3px 0 0 #3987ed; }
.cal-event.is-saved.in-database { box-shadow: inset 3px 0 0 #3987ed; }
.cal-more { background: transparent; color: var(--accent); padding-left: 0.2rem; }
.cal-empty-month { margin: 0.75rem 0 0; }

.event-popover-backdrop {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: var(--overlay-backdrop);
}
.event-popover {
  position: fixed;
  z-index: 40;
  width: min(24rem, calc(100vw - 1.5rem));
  max-height: min(72vh, 34rem);
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 0.9rem 0.9rem;
}
.event-popover .contest { margin: 0; padding: 0; border: 0; background: transparent; box-shadow: none; }
.event-popover .contest + .contest { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }

.contest {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  margin-bottom: 0.7rem;
  scroll-margin-top: 1rem;
}
.contest:hover { box-shadow: var(--shadow); }
.contest.is-saved { border-color: var(--accent); }
.contest.has-records { border-left: 4px solid #3987ed; }
.contest-top { display: flex; gap: 1rem; align-items: flex-start; }
.date-tile { flex-shrink: 0; width: 45px; padding-right: 12px; border-right: 1px solid var(--border); text-align: center; }
.date-tile span { color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; }
.date-tile strong { display: block; font-weight: 500; font-size: 1.6rem; }
.contest-heading { flex: 1; min-width: 0; }
.place { color: var(--text-muted); font-size: 0.875rem; line-height: 1.5; margin: 0.4rem 0 0; }
.save-button {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--accent);
  background: var(--bg);
  font-size: 1.2rem !important;
}
.save-button:hover { border-color: var(--accent); }
.save-button[aria-pressed=true] { color: var(--on-accent); background: var(--accent); }
.badges { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.85rem 0 0.5rem; }
.badge { display: inline-block; border: 1px solid var(--border); border-radius: 5px; padding: 3px 7px; color: var(--text-muted); font-size: 0.75rem; }
.badge.travel { color: var(--accent); background: var(--filter-band-competition); }
.badge.warning { color: var(--rank-mid); }
.database-badge { background: #3987ed22; color: var(--text); border: 1px solid #3987ed; font-weight: 600; }
.contest-notes { font-size: 0.875rem; line-height: 1.6; color: var(--text-muted); margin: 0.6rem 0; }
.contest-links { display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center; font-size: 0.875rem; }
.source-note { font-size: 0.75rem; color: var(--text-muted); margin: 0.85rem 0 0; }
.conflict { color: var(--rank-mid); font-size: 0.875rem; line-height: 1.5; margin: 0.6rem 0 0; }

.empty {
  padding: 1.5rem 0.75rem;
  color: var(--text-muted);
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.7;
  border: 1px dashed var(--border);
  border-radius: 8px;
}

.map-pin {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #7b5ee8;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px #0006;
  display: grid;
  place-items: center;
  color: #fff;
  font: 600 10px system-ui, sans-serif;
}
.map-pin.home { background: #2ec4b6; }
.map-pin.girls { background: #e56aa8; color: #fff; }
.map-pin.in-database { width: 26px; height: 26px; background: #3987ed; color: #fff; }
.map-pin.girls.in-database { background: #e56aa8; color: #fff; box-shadow: 0 0 0 3px #3987ed, 0 2px 8px #0006; }
.us-marker-layer .map-pin.saved {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 5px #e8b84a, 0 2px 8px #0006;
  z-index: 2;
}
.us-marker-layer .origin-pin {
  width: 19px;
  height: 19px;
  background: #2ec4b6;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px #2ec4b6, 0 2px 8px #0006;
  z-index: 1;
  pointer-events: none;
}

.info-window { color: var(--text); max-width: 330px; padding: 0.4rem; font-family: var(--font-sans); }
.pin-event + .pin-event { border-top: 1px solid var(--border); margin-top: 1rem; padding-top: 1rem; }
.pin-event h3 { font-size: 1rem; margin: 0 0 0.5rem; }
.pin-event p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.5; margin: 0.5rem 0; }
.pin-event .pin-date { color: var(--accent); }
.pin-deadline { font-size: 0.8rem; line-height: 1.5; color: var(--text-muted); }
.pin-save {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  text-align: center;
}
.pin-save.text-button {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  text-decoration: none;
}
.pin-save.text-button:hover { background: var(--btn-ghost-hover); text-decoration: none; }
.pin-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 0.75rem; font-size: 0.875rem; }

.us-state { stroke: var(--bg); stroke-width: 1.2; vector-effect: non-scaling-stroke; fill-opacity: 0.85; }
.us-state:hover { fill-opacity: 1; }
.inset-label { fill: var(--text-muted); font: 14px system-ui, sans-serif; text-anchor: middle; pointer-events: none; }
.us-marker-layer { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.us-marker-layer .map-pin {
  position: absolute;
  padding: 0;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
  font-size: 10px !important;
}
.us-marker-layer .map-pin:focus-visible { outline: 3px solid var(--text); outline-offset: 3px; z-index: 2; }
.us-map-popup {
  position: absolute;
  top: 16px;
  left: 16px;
  max-height: calc(100% - 16px);
  overflow: auto;
  width: min(280px, calc(100% - 32px));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.35rem 16px 16px;
  box-shadow: var(--shadow);
  z-index: 5;
}
.us-map-popup::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  transform: rotate(45deg);
}
.us-map-popup[data-place="right"]::before { left: -6px; top: 22px; border-right: 0; border-top: 0; }
.us-map-popup[data-place="left"]::before { right: -6px; top: 22px; border-left: 0; border-bottom: 0; }
.us-map-popup[data-place="below"]::before { top: -6px; left: 22px; border-bottom: 0; border-right: 0; }
.us-map-popup[data-place="above"]::before { bottom: -6px; left: 22px; border-top: 0; border-left: 0; }
.popup-close {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text-muted);
  font-size: 1.25rem !important;
  line-height: 1;
}
.popup-close:hover { color: var(--text); border-color: var(--accent); }

.state-initials {
  pointer-events: none;
  fill: #253345;
  font: 600 9px system-ui, sans-serif;
  paint-order: stroke;
  stroke: #ffffff70;
  stroke-width: 1.5px;
}

.skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.print-only { display: none; }

@media (max-width: 1050px) {
  .filters { flex-direction: column; }
}

@media (max-width: 700px) {
  .planner-header { padding: 3.35rem 1rem 0.85rem; text-align: left; }
  .planner-back { top: 1.1rem; left: 1rem; }
  .planner-header .header-brand { text-align: left; padding: 0; }
  .planner-header h1 { font-size: 1.35rem; }
  .planner-header .tagline { max-width: none; margin-left: 0; font-size: 0.82rem; line-height: 1.45; }
  #planner { padding: 0.75rem 0.85rem 1.25rem; }
  .planner-tabs { margin-bottom: 0.75rem; }
  #map, #map-message { height: 56vh; min-height: 300px; }
  #planner h2 { font-size: 1.05rem; }
  .search-panel { padding: 0.85rem 0.9rem 0.95rem; margin-bottom: 0.75rem; }
  #travel-form { grid-template-columns: 1fr; gap: 0.7rem; }
  .address-field { grid-column: auto; }
  #planner input:not([type=radio]):not([type=checkbox]),
  #planner select { height: 44px; padding: 0.6rem 0.75rem; }
  .section-heading { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .explore-actions { width: 100%; }
  .segmented { width: max-content; }
  .contest { padding: 1rem; }
  .cal-day { min-height: 4.6rem; }
  .cal-event, .cal-more { font-size: 0.68rem !important; }
  .map-controls { right: 0.5rem; bottom: 0.5rem; }
  .map-legend { display: none; }
  body.is-map-tab {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
  }
  body.is-map-tab .planner-header { flex-shrink: 0; }
  body.is-map-tab #planner {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-bottom: 0;
  }
  body.is-map-tab .planner-tabs { flex-shrink: 0; }
  body.is-map-tab #map-tab-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  body.is-map-tab .search-panel { flex-shrink: 0; margin-bottom: 0.75rem; }
  body.is-map-tab .map-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 12rem;
    margin-bottom: 0;
  }
  body.is-map-tab .map-stage {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  body.is-map-tab #map,
  body.is-map-tab #map-message {
    flex: 1;
    height: auto;
    min-height: 0;
    max-height: none;
  }
}

@media print {
  @page { margin: 18mm; }
  :root { --bg: #fff; --surface: #fff; --text: #111; --text-muted: #444; --accent: #194f91; --border: #ccc; --rank-mid: #774400; }
  body { background: #fff !important; color: #111 !important; }
  .planner-header, .map-panel, .planner-tabs, .help-details, .search-panel, .explore, .cal-wrap, .event-popover, .event-popover-backdrop, .text-button, .skip-link, .export-help { display: none !important; }
  #planner { max-width: none; padding: 0; }
  .print-only { display: block; font-size: 20pt; margin: 0 0 1rem; }
}
