:root {
  --bg-1: #f6f1ea;
  --bg-2: #eef2f5;
  --ink: #1f1c1a;
  --muted: #5b5a57;
  --card: #ffffff;
  --accent: #f18f3b;
  --accent-2: #f5b35f;
  --accent-3: #1f6f7a;
  --line: rgba(31, 28, 26, 0.14);
  --shadow: 0 16px 40px rgba(31, 28, 26, 0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Lucida Sans", "Lucida Sans Unicode", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fdf5ea 0%, var(--bg-1) 40%, var(--bg-2) 100%);
  position: relative;
  overflow-x: hidden;
}

.global-nav-bar {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: #4b5563;
  position: relative;
  z-index: 2;
}

.global-nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.global-nav-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.global-nav-title-main {
  font-weight: 600;
  color: #111827;
}

.global-nav-title-sub {
  font-size: 0.78rem;
  color: #6b7280;
}

.global-nav-link {
  font-size: 0.88rem;
  padding: 5px 10px;
  border-radius: 999px;
  text-decoration: none;
  color: #6b7280;
  border: 1px solid transparent;
  background: transparent;
  transition:
    background 150ms ease-out,
    color 150ms ease-out,
    border-color 150ms ease-out;
}

.global-nav-link:hover {
  background: rgba(249, 115, 22, 0.08);
  color: #111827;
  border-color: rgba(249, 115, 22, 0.5);
}

.global-nav-link-active {
  background: rgba(249, 115, 22, 0.08);
  color: #111827;
  border-color: rgba(249, 115, 22, 0.8);
  font-weight: 600;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.orb-a {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #f6b979 0%, rgba(246, 185, 121, 0) 70%);
  top: -160px;
  right: -140px;
}

.orb-b {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #8fc3c8 0%, rgba(143, 195, 200, 0) 70%);
  bottom: -180px;
  left: -140px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(31, 28, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 28, 26, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}

.hero {
  padding: 38px 6vw 24px;
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-3);
  margin: 0 0 12px;
}

h1,
h2 {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(28px, 3vw, 40px);
}

h2 {
  font-size: 20px;
}

.subhead {
  margin: 0;
  max-width: 560px;
  line-height: 1.5;
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 18px;
  border: 1px solid rgba(241, 143, 59, 0.25);
  display: grid;
  gap: 12px;
  animation: fadeUp 0.6s ease both;
}

.hero-kpi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(241, 143, 59, 0.16), rgba(31, 111, 122, 0.08));
}

.kpi-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
}

.kpi-value {
  font-size: 18px;
  font-weight: 800;
}

.shell {
  max-width: 1280px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 0 6vw;
  position: relative;
  z-index: 1;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 28, 26, 0.08);
  animation: fadeUp 0.5s ease both;
}

.panel-wide {
  min-height: 120px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

.trip-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trip-card {
  border: 1px solid rgba(31, 28, 26, 0.1);
  border-radius: var(--radius-md);
  padding: 12px;
  display: grid;
  gap: 6px;
  background: linear-gradient(135deg, rgba(31, 111, 122, 0.06), rgba(241, 143, 59, 0.06));
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trip-card.active {
  border-color: rgba(241, 143, 59, 0.7);
  box-shadow: 0 10px 24px rgba(241, 143, 59, 0.2);
}

.trip-card:hover {
  transform: translateY(-2px);
}

.trip-meta {
  font-size: 12px;
  color: var(--muted);
}

.trip-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.trip-toolbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.place-tools {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.place-results {
  margin-top: 8px;
  display: grid;
  gap: 6px;
}

.place-result {
  border: 1px solid rgba(31, 28, 26, 0.15);
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 10px;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  display: grid;
  gap: 4px;
  font-size: 13px;
}

.place-result span {
  color: var(--muted);
  font-size: 12px;
}

.flight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}

.fm-field {
  display: grid;
  gap: 4px;
}

.field-hint {
  color: var(--muted);
  font-size: 12px;
  min-height: 16px;
}

.flight-manual-tools {
  margin-top: 6px;
}

.flight-manual {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed rgba(31, 28, 26, 0.2);
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flight-manual h4 {
  margin: 0;
  font-size: 14px;
}

.flight-manual-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flight-manual-row {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flight-manual-actions {
  display: flex;
  justify-content: flex-end;
}

.btn.manual {
  border-radius: var(--radius-sm);
}

.flight-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.flight-results .place-results {
  max-height: 240px;
  overflow-y: auto;
  padding-right: 4px;
}

.fm-ui {
  display: grid;
  gap: 16px;
}

.fm-section {
  display: grid;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(31, 28, 26, 0.12);
}

.fm-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.fm-section-head h4 {
  margin: 0;
  font-size: 14px;
}

.fm-results {
  display: grid;
  gap: 10px;
  min-height: 80px;
}

.fm-results-wrap {
  display: block;
}

.fm-filters-wrap {
  display: block;
}

#flightOutboundResultsUi,
#flightReturnResultsUi {
  display: block;
  width: 100%;
}

.fm-ui .card {
  background: var(--card);
  border: 1px solid rgba(31, 28, 26, 0.14);
  border-radius: 14px;
  box-shadow: none;
  padding: 12px;
}

.fm-ui .form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.fm-ui .span2 {
  grid-column: span 2;
}

.fm-ui .span3 {
  grid-column: span 3;
}

.fm-ui .small {
  color: var(--muted);
  font-size: 12.5px;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) minmax(200px, 1.4fr) minmax(120px, 0.9fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(31, 28, 26, 0.16);
  background: #ffffff;
}

.offer-row.is-open {
  border-color: rgba(241, 143, 59, 0.5);
  box-shadow: 0 10px 24px rgba(31, 28, 26, 0.12);
}

.offer-row.is-selected {
  border-color: rgba(241, 143, 59, 0.8);
  box-shadow: 0 12px 28px rgba(241, 143, 59, 0.18);
}

.offer-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-time {
  font-weight: 800;
  font-size: 15px;
}

.offer-duration {
  font-weight: 700;
}

.offer-sub {
  color: var(--muted);
  font-size: 12.5px;
}

.offer-price {
  font-weight: 900;
  font-size: 16px;
}

.offer-cell-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.caret-btn {
  font-weight: 900;
  padding: 6px 10px;
  min-width: 40px;
}

.offer-detail {
  border-left: 3px solid rgba(241, 143, 59, 0.45);
  padding: 12px 14px 14px 14px;
  background: rgba(241, 143, 59, 0.08);
  border-radius: 12px;
}

.offer-detail-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin: 8px 0 6px;
}

.offer-detail-title {
  font-weight: 800;
}

.offer-more {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(31, 28, 26, 0.16);
}

.table th,
.table td {
  text-align: left;
  padding: 10px 10px;
  border-bottom: 1px solid rgba(31, 28, 26, 0.12);
  font-size: 13px;
}

.table th {
  color: var(--muted);
  font-weight: 750;
  background: rgba(243, 244, 246, 0.7);
}

.table tr:last-child td {
  border-bottom: none;
}

.filtersMeta {
  font-size: 12.5px;
  margin-top: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(31, 28, 26, 0.12);
  background: rgba(241, 143, 59, 0.08);
  font-size: 12px;
}

.chip-muted {
  color: var(--muted);
  background: rgba(31, 28, 26, 0.04);
}

.chip-all {
  font-weight: 700;
}

.chip-x {
  border: none;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.af-root {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.af-chip {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
}

.af-overlay {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(15, 23, 42, 0.55);
  z-index: 9999;
  padding: 18px;
}

.af-overlay[data-open="1"] {
  display: grid;
}

.af-modal {
  width: min(720px, 100%);
  max-height: min(80vh, 760px);
  overflow: auto;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid rgba(31, 28, 26, 0.16);
  box-shadow: var(--shadow);
  padding: 14px;
}

.af-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.af-title {
  font-weight: 850;
  font-size: 14px;
}

.af-x {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 10px;
}

.af-x:hover {
  background: rgba(31, 28, 26, 0.08);
}

.af-search {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(31, 28, 26, 0.16);
  outline: none;
}

.af-search:focus {
  box-shadow: 0 0 0 4px rgba(241, 143, 59, 0.25);
  border-color: rgba(241, 143, 59, 0.6);
}

.af-actions {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  flex-wrap: wrap;
}

.af-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.af-list {
  border-radius: 14px;
  border: 1px solid rgba(31, 28, 26, 0.12);
  background: rgba(31, 28, 26, 0.03);
  padding: 8px;
}

.af-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.af-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
}

.af-item:hover {
  background: rgba(241, 143, 59, 0.08);
}

.af-item input[type="checkbox"],
.af-item input[type="radio"] {
  width: 16px;
  height: 16px;
}

@media (min-width: 720px) {
  .fm-ui .form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .offer-row {
    grid-template-columns: 1fr;
  }

  .offer-cell-actions {
    justify-content: flex-start;
  }
}

.flight-selected {
  border: 1px solid rgba(31, 28, 26, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 8px;
  font-size: 13px;
}

.flight-selected h4 {
  margin: 0;
  font-size: 13px;
}

.flight-selected .segment {
  display: grid;
  gap: 2px;
  padding: 6px 0;
  border-top: 1px dashed rgba(31, 28, 26, 0.12);
}

.flight-selected .segment:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.flight-selected .meta {
  color: var(--muted);
  font-size: 12px;
}

.place-result.selected {
  border-color: rgba(31, 111, 122, 0.4);
  background: rgba(31, 111, 122, 0.08);
}

.route-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;
  overflow-y: auto;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 14, 13, 0.55);
  backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  max-width: 680px;
  max-height: 90vh;
  width: 100%;
  padding: 20px;
  display: grid;
  gap: 16px;
  z-index: 1;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.modal-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-height: calc(90vh - 140px);
  overflow-y: auto;
  padding-right: 4px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.center {
  align-items: center;
}

.field.align-end {
  align-items: flex-end;
  justify-content: flex-end;
}

.btn.full {
  width: 100%;
}

.btn.success {
  background: linear-gradient(135deg, #57c27c, #5ad38b);
  color: #14341f;
}

.field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.field-summary {
  font-size: 12px;
  color: var(--muted);
}

.is-hidden {
  display: none;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(31, 28, 26, 0.2);
  background: #fff;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-3);
  box-shadow: 0 0 0 3px rgba(31, 111, 122, 0.2);
}

textarea {
  resize: vertical;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.span2 {
  grid-column: span 2;
}

.btn {
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1d1a18;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.small {
  padding: 6px 10px;
  font-size: 12px;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(241, 143, 59, 0.25);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(31, 28, 26, 0.2);
  font-weight: 700;
}

.btn.danger {
  background: linear-gradient(135deg, #f05b5b, #f68b5b);
}

.muted {
  color: var(--muted);
  font-size: 13px;
}

.calendar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.segmented {
  display: flex;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(31, 28, 26, 0.2);
}

.seg {
  background: transparent;
  border: none;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
}

.seg.active {
  background: rgba(31, 111, 122, 0.12);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.weekday {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  padding: 6px 0;
}

.period-label {
  font-size: 18px;
  font-weight: 800;
}

.selected-day {
  font-size: 13px;
  color: var(--muted);
}

.calendar {
  display: grid;
  gap: 8px;
}

.calendar.month,
.calendar.week {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar.year {
  display: block;
}

.day-cell {
  border: 1px solid rgba(31, 28, 26, 0.1);
  border-radius: var(--radius-md);
  padding: 8px;
  min-height: 110px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.day-cell.muted {
  opacity: 0.45;
}

.day-cell.selected {
  border-color: var(--accent-3);
  box-shadow: 0 12px 24px rgba(31, 111, 122, 0.2);
}

.day-header {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 13px;
}

.day-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.item-chip {
  background: rgba(241, 143, 59, 0.12);
  border-left: 3px solid var(--accent);
  padding: 4px 6px;
  border-radius: 8px;
  font-size: 11px;
  line-height: 1.3;
}

.item-chip.type-flight {
  border-left-color: #1f6f7a;
}

.item-chip.type-lodging {
  border-left-color: #c26a36;
}

.item-chip.type-stay {
  border-left-color: #5a9964;
}

.year-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mini-month {
  border: 1px solid rgba(31, 28, 26, 0.12);
  border-radius: var(--radius-md);
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
}

.mini-title {
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 6px;
}

.mini-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-size: 10px;
  color: var(--muted);
}

.mini-day {
  text-align: center;
  padding: 2px 0;
  border-radius: 6px;
}

.mini-day.has-item {
  background: rgba(241, 143, 59, 0.18);
  color: #1d1a18;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.timeline-tools .grow {
  flex: 1;
  min-width: 180px;
}

.btn.icon {
  padding: 6px 10px;
  min-width: auto;
  width: auto;
}

.divider {
  height: 1px;
  background: rgba(31, 28, 26, 0.12);
  margin: 12px 0;
}

.timeline-card {
  border-left: 4px solid var(--accent-3);
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: rgba(31, 111, 122, 0.05);
  display: grid;
  gap: 6px;
}

.timeline-title {
  font-weight: 800;
}

.timeline-meta {
  font-size: 12px;
  color: var(--muted);
}

.timeline-meta-block {
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
}

.timeline-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.timeline-meta.details {
  line-height: 1.4;
}

.timeline-actions {
  display: flex;
  gap: 8px;
}

.status {
  max-width: 1280px;
  margin: 0 auto 40px;
  padding: 10px 6vw;
  color: var(--muted);
  font-size: 13px;
  position: relative;
  z-index: 1;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .shell {
    grid-template-columns: 1fr;
  }

  .calendar.year {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .span2 {
    grid-column: span 1;
  }

  .place-tools {
    grid-template-columns: 1fr;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .flight-grid {
    grid-template-columns: 1fr;
  }

  .flight-results {
    grid-template-columns: 1fr;
  }

  .calendar {
    overflow-x: auto;
  }

  .calendar.month,
  .calendar.week {
    grid-template-columns: repeat(7, minmax(90px, 1fr));
  }

  .calendar-actions {
    flex-wrap: wrap;
  }
}
