/* Booking change/cancel overlays and booking detail overlay layout.
   Extracted from styles.css lines 13113-15224.
   Load after styles.css to preserve cascade. */

/* Booking Change Overlay: modernized to match current bookings theme */
#bookingChangeOverlay .booking-change-sheet {
  width: min(1100px, calc(100vw - 34px));
  max-height: min(900px, calc(100vh - 40px));
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(10, 132, 255, 0.18);
  background: radial-gradient(
      130% 110% at 0% 0%,
      rgba(10, 132, 255, 0.16),
      rgba(10, 132, 255, 0) 58%
    ),
    radial-gradient(
      120% 100% at 100% 0%,
      rgba(24, 214, 179, 0.13),
      rgba(24, 214, 179, 0) 54%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.99),
      rgba(247, 250, 255, 0.96)
    );
  box-shadow:
    0 34px 70px rgba(6, 16, 34, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}
#bookingChangeOverlay .booking-change-sheet .itinerary-sheet-head {
  align-items: flex-start;
  padding: 0 2px 18px;
  margin-bottom: 2px;
  border-bottom: 1px dashed rgba(29, 29, 31, 0.14);
}
#bookingChangeOverlay .booking-change-sheet .itinerary-sheet-head > div {
  display: grid;
  gap: 4px;
}
#bookingChangeOverlay .booking-change-sheet .itinerary-sheet-head .eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: var(--blue-strong);
}
#bookingChangeOverlay .booking-change-sheet .itinerary-sheet-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  letter-spacing: -0.02em;
}
#bookingChangeOverlay #bookingChangeSubtitle {
  margin: 0;
  max-width: 58ch;
  font-size: 0.92rem;
  line-height: 1.45;
}
#bookingChangeOverlay #bookingChangeTitle,
#bookingChangeOverlay #bookingChangeSubtitle {
  display: none;
}
#bookingChangeOverlay #bookingChangeClose {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.97),
    rgba(244, 248, 255, 0.92)
  );
  color: var(--ink);
  font-weight: 700;
  box-shadow:
    0 10px 20px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
#bookingChangeOverlay #bookingChangeClose:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 26px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
#bookingChangeOverlay .itinerary-sheet-grid.booking-change-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 10px;
  align-items: start;
}
#bookingChangeOverlay
  .itinerary-sheet-grid.booking-change-grid.is-offers-hidden {
  grid-template-columns: minmax(0, 1fr);
}
#bookingChangeOverlay .itinerary-main-column {
  display: block;
  min-width: 0;
}
#bookingChangeOverlay .itinerary-side-column.booking-change-side {
  min-width: 0;
}
#bookingChangeOverlay .booking-change-card {
  display: grid;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid rgba(10, 132, 255, 0.15);
  padding: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 251, 255, 0.95)
  );
  box-shadow:
    0 14px 30px rgba(12, 22, 38, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
#bookingChangeOverlay .booking-change-card .panel-header.compact {
  margin-bottom: 2px;
}
#bookingChangeOverlay #bookingChangeStatus {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(10, 132, 255, 0.18);
  background: rgba(10, 132, 255, 0.11);
  color: #0b5ab0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#bookingChangeOverlay #bookingChangeStatus.error {
  border-color: rgba(180, 35, 24, 0.2);
  background: rgba(180, 35, 24, 0.12);
  color: #9f2015;
}
#bookingChangeOverlay .booking-change-slices {
  display: grid;
  gap: 12px;
}
#bookingChangeOverlay .booking-change-slice {
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 18px;
  padding: 12px;
  display: grid;
  gap: 11px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.97),
    rgba(250, 252, 255, 0.92)
  );
}
#bookingChangeOverlay .booking-change-slice-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
#bookingChangeOverlay .booking-change-slice-head strong {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
#bookingChangeOverlay .booking-change-slice-head .caption {
  margin: 0;
  font-size: 0.68rem;
  color: #0b5ab0;
  background: rgba(10, 132, 255, 0.1);
  border: 1px solid rgba(10, 132, 255, 0.18);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}
#bookingChangeOverlay .booking-change-slice .booking-change-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
#bookingChangeOverlay .booking-change-slice .booking-change-grid label {
  display: grid;
  gap: 6px;
}
#bookingChangeOverlay .booking-change-slice .booking-change-grid label > span {
  font-size: 0.63rem;
  color: var(--muted);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
}
#bookingChangeOverlay .booking-change-slice .booking-change-grid input,
#bookingChangeOverlay .booking-change-slice .booking-change-grid select {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(29, 29, 31, 0.16);
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}
#bookingChangeOverlay .booking-change-slice .booking-change-grid input:focus,
#bookingChangeOverlay .booking-change-slice .booking-change-grid select:focus {
  outline: none;
  border-color: rgba(10, 132, 255, 0.56);
  box-shadow:
    0 0 0 3px rgba(10, 132, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
#bookingChangeOverlay .booking-change-note {
  margin: 0;
  border-radius: 14px;
  border: 1px dashed rgba(29, 29, 31, 0.18);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}
#bookingChangeOverlay .booking-change-actions {
  display: flex;
  justify-content: flex-start;
}
#bookingChangeOverlay .booking-change-actions .primary {
  min-height: 44px;
  padding-inline: 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
#bookingChangeOverlay .booking-change-offers {
  display: grid;
  gap: 12px;
}
#bookingChangeOverlay .booking-change-offers > .caption {
  border-radius: 14px;
  border: 1px dashed rgba(29, 29, 31, 0.2);
  padding: 12px;
  background: rgba(255, 255, 255, 0.82);
}
#bookingChangeOverlay .booking-change-offer-card {
  border: 1px solid rgba(29, 29, 31, 0.11);
  border-radius: 16px;
  padding: 12px;
  display: grid;
  gap: 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.985),
    rgba(246, 250, 255, 0.95)
  );
  box-shadow:
    0 12px 24px rgba(12, 22, 38, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
#bookingChangeOverlay .booking-change-offer-card .panel-header.compact {
  margin-bottom: 0;
}
#bookingChangeOverlay .booking-change-offer-card .itinerary-price-pill {
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid rgba(10, 132, 255, 0.2);
  background: rgba(10, 132, 255, 0.1);
  color: #0b4f91;
  padding: 6px 10px;
}
#bookingChangeOverlay .booking-change-offer-trips {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}
#bookingChangeOverlay .booking-change-offer-slice {
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 12px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.84);
  display: grid;
  gap: 6px;
}
#bookingChangeOverlay .booking-change-offer-slice-headline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
#bookingChangeOverlay .booking-change-offer-slice-headline strong {
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#bookingChangeOverlay .booking-change-offer-slice-headline span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}
#bookingChangeOverlay .booking-change-offer-slice-times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
#bookingChangeOverlay .booking-change-offer-point {
  display: grid;
  gap: 1px;
}
#bookingChangeOverlay .booking-change-offer-point small {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
#bookingChangeOverlay .booking-change-offer-point strong {
  font-size: 1.1rem;
  line-height: 1.1;
  color: var(--ink);
}
#bookingChangeOverlay .booking-change-offer-point span {
  font-size: 0.75rem;
  color: var(--ink-soft);
}
#bookingChangeOverlay .booking-change-offer-slice-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 0.68rem;
  color: var(--muted);
  border-top: 1px dashed rgba(29, 29, 31, 0.14);
  padding-top: 6px;
}
#bookingChangeOverlay .booking-change-offer-slice-meta span {
  position: relative;
  white-space: nowrap;
}
#bookingChangeOverlay .booking-change-offer-slice-meta span + span::before {
  content: '•';
  margin-right: 10px;
  color: rgba(29, 29, 31, 0.4);
}
#bookingChangeOverlay .booking-change-offer-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  font-size: 0.8rem;
}
#bookingChangeOverlay .booking-change-offer-line strong {
  color: var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.66rem;
}
#bookingChangeOverlay .booking-change-offer-line span {
  color: var(--ink-soft);
  text-align: right;
}
#bookingChangeOverlay .booking-change-offer-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border-top: 1px dashed rgba(29, 29, 31, 0.15);
  padding-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}
#bookingChangeOverlay .booking-change-offer-kpi {
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.78);
  display: grid;
  gap: 2px;
}
#bookingChangeOverlay .booking-change-offer-kpi span {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#bookingChangeOverlay .booking-change-offer-meta strong {
  color: var(--ink);
  font-size: 0.84rem;
}
#bookingChangeOverlay .booking-change-offer-carry {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
#bookingChangeOverlay .booking-change-offer-carry span {
  border-radius: 999px;
  border: 1px solid rgba(10, 132, 255, 0.2);
  background: rgba(10, 132, 255, 0.11);
  color: #0b5ab0;
  padding: 4px 9px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
#bookingChangeOverlay .booking-change-offer-actions {
  display: flex;
  justify-content: flex-end;
}
#bookingChangeOverlay .booking-change-offer-actions .secondary {
  min-height: 38px;
  border-radius: 999px;
  padding-inline: 14px;
  font-weight: 700;
}
#bookingChangeOverlay .booking-change-error-card {
  border-radius: 12px;
  border: 1px solid rgba(180, 35, 24, 0.24);
  background: rgba(180, 35, 24, 0.08);
  padding: 10px 12px;
  display: grid;
  gap: 8px;
}
#bookingChangeOverlay .booking-change-error-card strong {
  color: #a11c13;
  font-size: 0.85rem;
}
#bookingChangeOverlay .booking-change-error-request-id {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--muted);
}
#bookingChangeOverlay .booking-change-error-request-id code {
  border-radius: 8px;
  border: 1px solid rgba(29, 29, 31, 0.14);
  background: rgba(255, 255, 255, 0.78);
  padding: 3px 6px;
  color: var(--ink);
}
#bookingChangeOverlay .booking-change-error-request-id .secondary {
  min-height: 28px;
  padding: 0 10px;
}
@media (max-width: 1100px) {
  #bookingChangeOverlay .itinerary-sheet-grid.booking-change-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 780px) {
  #bookingChangeOverlay .booking-change-sheet {
    width: min(1180px, calc(100vw - 24px));
    max-height: min(900px, calc(100vh - 24px));
    padding: 16px;
    border-radius: 24px;
  }
  #bookingChangeOverlay .booking-change-sheet .itinerary-sheet-head {
    align-items: stretch;
    gap: 10px;
  }
  #bookingChangeOverlay #bookingChangeClose {
    width: 100%;
    justify-content: center;
  }
  #bookingChangeOverlay .booking-change-slice .booking-change-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
  #bookingChangeOverlay .booking-change-offer-slice-times {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }
}
[data-theme='dark'] #bookingChangeOverlay .booking-change-sheet {
  border-color: rgba(74, 165, 255, 0.28);
  background: radial-gradient(
      130% 110% at 0% 0%,
      rgba(74, 165, 255, 0.22),
      rgba(74, 165, 255, 0) 58%
    ),
    radial-gradient(
      120% 100% at 100% 0%,
      rgba(55, 194, 141, 0.14),
      rgba(55, 194, 141, 0) 54%
    ),
    linear-gradient(180deg, rgba(13, 18, 32, 0.98), rgba(10, 14, 26, 0.96));
}
[data-theme='dark']
  #bookingChangeOverlay
  .booking-change-sheet
  .itinerary-sheet-head {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
[data-theme='dark'] #bookingChangeOverlay #bookingChangeClose {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(
    180deg,
    rgba(22, 30, 50, 0.96),
    rgba(14, 20, 34, 0.92)
  );
  color: var(--ink);
}
[data-theme='dark'] #bookingChangeOverlay .booking-change-card,
[data-theme='dark'] #bookingChangeOverlay .booking-change-slice,
[data-theme='dark'] #bookingChangeOverlay .booking-change-offer-card,
[data-theme='dark'] #bookingChangeOverlay .booking-change-offers > .caption,
[data-theme='dark'] #bookingChangeOverlay .booking-change-note {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    180deg,
    rgba(17, 25, 42, 0.94),
    rgba(11, 17, 30, 0.92)
  );
}
[data-theme='dark']
  #bookingChangeOverlay
  .booking-change-slice
  .booking-change-grid
  input,
[data-theme='dark']
  #bookingChangeOverlay
  .booking-change-slice
  .booking-change-grid
  select {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(12, 18, 32, 0.92);
}
[data-theme='dark']
  #bookingChangeOverlay
  .booking-change-slice
  .booking-change-grid
  input:focus,
[data-theme='dark']
  #bookingChangeOverlay
  .booking-change-slice
  .booking-change-grid
  select:focus {
  border-color: rgba(74, 165, 255, 0.66);
  box-shadow:
    0 0 0 3px rgba(74, 165, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
[data-theme='dark'] #bookingChangeOverlay .booking-change-offer-slice,
[data-theme='dark'] #bookingChangeOverlay .booking-change-offer-kpi {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(11, 17, 30, 0.82);
}
[data-theme='dark'] #bookingChangeOverlay .booking-change-offer-slice-meta {
  border-top-color: rgba(255, 255, 255, 0.18);
}
[data-theme='dark'] #bookingChangeOverlay .booking-change-error-card {
  border-color: rgba(255, 119, 101, 0.32);
  background: rgba(180, 35, 24, 0.16);
}
[data-theme='dark'] #bookingChangeOverlay .booking-change-error-card strong {
  color: #ff9f94;
}
[data-theme='dark']
  #bookingChangeOverlay
  .booking-change-error-request-id
  code {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(13, 20, 34, 0.94);
}
#bookings .booking-cancel-sheet {
  max-width: 940px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #fff);
}
#bookings .booking-cancel-sheet .itinerary-sheet-head {
  align-items: flex-start;
}
#bookings .booking-cancel-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.8fr);
  align-items: start;
}
#bookings .booking-cancel-card {
  display: grid;
  gap: 12px;
}
#bookings .booking-cancel-timeline {
  display: grid;
  gap: 10px;
}
#bookings .booking-cancel-row {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  padding: 11px 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
#bookings .booking-cancel-row strong,
#bookings .booking-cancel-row span {
  display: block;
}
#bookings .booking-cancel-row strong {
  font-size: 13px;
}
#bookings .booking-cancel-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}
#bookings .booking-cancel-times {
  text-align: right;
}
#bookings .booking-cancel-actions {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}
#bookings .booking-cancel-quote {
  display: grid;
  gap: 12px;
}
#bookings .booking-cancel-quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
#bookings .booking-cancel-quote-grid > div {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  padding: 11px 12px;
}
#bookings .booking-cancel-quote-grid span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
#bookings .booking-cancel-quote-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}
/* Booking Cancel Overlay: refreshed to match modern bookings panels */
#bookingCancelOverlay .booking-cancel-sheet {
  width: min(1120px, calc(100vw - 34px));
  max-height: min(900px, calc(100vh - 40px));
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(221, 61, 34, 0.16);
  background: radial-gradient(
      135% 110% at 0% 0%,
      rgba(221, 61, 34, 0.11),
      rgba(221, 61, 34, 0) 56%
    ),
    radial-gradient(
      120% 100% at 100% 0%,
      rgba(245, 158, 11, 0.11),
      rgba(245, 158, 11, 0) 52%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.995),
      rgba(248, 251, 255, 0.965)
    );
  box-shadow:
    0 34px 70px rgba(6, 16, 34, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}
#bookingCancelOverlay .booking-cancel-sheet .itinerary-sheet-head {
  align-items: flex-start;
  gap: 14px;
  padding: 0 2px 18px;
  margin-bottom: 2px;
  border-bottom: 1px dashed rgba(29, 29, 31, 0.15);
}
#bookingCancelOverlay .booking-cancel-sheet .itinerary-sheet-head > div {
  display: grid;
  gap: 4px;
}
#bookingCancelOverlay .booking-cancel-sheet .itinerary-sheet-head .eyebrow {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: #c2410c;
}
#bookingCancelOverlay .booking-cancel-sheet .itinerary-sheet-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.1vw, 1.95rem);
  letter-spacing: -0.02em;
}
#bookingCancelOverlay #bookingCancelSubtitle {
  margin: 0;
  max-width: 58ch;
  font-size: 0.92rem;
  line-height: 1.45;
}
#bookingCancelOverlay #bookingCancelClose {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(244, 248, 255, 0.92)
  );
  color: var(--ink);
  font-weight: 700;
  box-shadow:
    0 10px 20px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease;
}
#bookingCancelOverlay #bookingCancelClose:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 26px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
#bookingCancelOverlay .itinerary-sheet-grid.booking-cancel-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 14px;
  align-items: start;
}
#bookingCancelOverlay:not(.quote-expanded)
  .itinerary-sheet-grid.booking-cancel-grid {
  grid-template-columns: minmax(0, 1fr);
}
#bookingCancelOverlay:not(.quote-expanded) .booking-cancel-side {
  display: none;
}
#bookingCancelOverlay .booking-cancel-side {
  min-width: 0;
}
#bookingCancelOverlay .booking-cancel-card {
  display: grid;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid rgba(29, 29, 31, 0.11);
  padding: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.985),
    rgba(246, 250, 255, 0.95)
  );
  box-shadow:
    0 14px 30px rgba(12, 22, 38, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
#bookingCancelOverlay .booking-cancel-side .booking-cancel-card {
  border-color: rgba(194, 65, 12, 0.16);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99),
    rgba(255, 249, 245, 0.95)
  );
}
#bookingCancelOverlay .booking-cancel-card .panel-header.compact {
  margin-bottom: 2px;
}
#bookingCancelOverlay #bookingCancelStatus {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(194, 65, 12, 0.2);
  background: rgba(194, 65, 12, 0.12);
  color: #9a3412;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#bookingCancelOverlay #bookingCancelStatus.error {
  border-color: rgba(180, 35, 24, 0.24);
  background: rgba(180, 35, 24, 0.14);
  color: #9f2015;
}
#bookingCancelOverlay .booking-cancel-timeline {
  display: grid;
  gap: 10px;
}
#bookingCancelOverlay .booking-cancel-row {
  border: 1px solid rgba(29, 29, 31, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  padding: 11px 12px 11px 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}
#bookingCancelOverlay .booking-cancel-row::before {
  content: '';
  position: absolute;
  inset: 8px auto 8px 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f97316, #dc2626);
  opacity: 0.8;
}
#bookingCancelOverlay .booking-cancel-row strong,
#bookingCancelOverlay .booking-cancel-row span {
  display: block;
}
#bookingCancelOverlay .booking-cancel-row strong {
  font-size: 0.95rem;
}
#bookingCancelOverlay .booking-cancel-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}
#bookingCancelOverlay .booking-cancel-times {
  text-align: right;
}
#bookingCancelOverlay .booking-cancel-actions {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
#bookingCancelOverlay .booking-cancel-notice {
  border: 1px solid rgba(194, 65, 12, 0.18);
  border-radius: 12px;
  background: rgba(255, 247, 237, 0.9);
  color: #9a3412;
  padding: 9px 11px;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.35;
}
#bookingCancelOverlay .booking-cancel-notice.error {
  border-color: rgba(180, 35, 24, 0.24);
  background: rgba(254, 242, 242, 0.92);
  color: #9f2015;
}
#bookingCancelOverlay .booking-cancel-notice.hidden {
  display: none;
}
#bookingCancelOverlay #bookingCancelQuote {
  min-height: 44px;
  padding-inline: 22px;
  border-radius: 999px;
  font-weight: 700;
}
#bookingCancelOverlay #bookingCancelQuote[aria-busy='true'],
#bookingCancelOverlay #bookingCancelConfirm[aria-busy='true'] {
  cursor: progress;
}
#bookingCancelOverlay .booking-cancel-quote {
  display: grid;
  gap: 10px;
}
#bookingCancelOverlay .booking-cancel-quote > .caption {
  border: 1px dashed rgba(29, 29, 31, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  padding: 10px 12px;
}
#bookingCancelOverlay .booking-cancel-quote-empty {
  display: grid;
  gap: 10px;
}
#bookingCancelOverlay .booking-cancel-quote-empty-title {
  margin: 0;
  border: 1px dashed rgba(29, 29, 31, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 12px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}
#bookingCancelOverlay .booking-cancel-quote-empty-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
#bookingCancelOverlay .booking-cancel-quote-empty-grid > div {
  border: 1px solid rgba(29, 29, 31, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  padding: 10px 11px;
  display: grid;
  gap: 4px;
}
#bookingCancelOverlay .booking-cancel-quote-empty-grid span {
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
#bookingCancelOverlay .booking-cancel-quote-empty-grid strong {
  font-size: 0.96rem;
  color: var(--ink-soft);
}
#bookingCancelOverlay .booking-cancel-quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
#bookingCancelOverlay .booking-cancel-quote-grid > div {
  border: 1px solid rgba(29, 29, 31, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  padding: 10px 11px;
}
#bookingCancelOverlay .booking-cancel-quote-grid span {
  display: block;
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
#bookingCancelOverlay .booking-cancel-quote-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 0.95rem;
}
#bookingCancelOverlay #bookingCancelConfirm {
  min-height: 44px;
  padding-inline: 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(159, 32, 21, 0.25);
  background: linear-gradient(180deg, rgba(203, 50, 35, 0.96), #b42318);
  color: #fff;
  box-shadow:
    0 10px 20px rgba(180, 35, 24, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    filter 0.16s ease;
}
#bookingCancelOverlay #bookingCancelConfirm:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow:
    0 14px 24px rgba(180, 35, 24, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
#bookingCancelOverlay #bookingCancelConfirm:active:not(:disabled) {
  transform: translateY(1px);
}
#bookingCancelOverlay #bookingCancelConfirm:disabled {
  border-color: rgba(29, 29, 31, 0.14);
  background: linear-gradient(
    180deg,
    rgba(245, 247, 250, 0.98),
    rgba(236, 241, 246, 0.96)
  );
  color: rgba(29, 29, 31, 0.45);
  box-shadow: none;
  cursor: not-allowed;
}
@media (max-width: 1060px) {
  #bookingCancelOverlay .itinerary-sheet-grid.booking-cancel-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 780px) {
  #bookingCancelOverlay .booking-cancel-sheet {
    width: min(1140px, calc(100vw - 24px));
    max-height: min(900px, calc(100vh - 24px));
    padding: 16px;
    border-radius: 24px;
  }
  #bookingCancelOverlay .booking-cancel-sheet .itinerary-sheet-head {
    align-items: stretch;
  }
  #bookingCancelOverlay #bookingCancelClose {
    width: 100%;
    justify-content: center;
  }
  #bookingCancelOverlay .booking-cancel-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
  #bookingCancelOverlay .booking-cancel-times {
    text-align: left;
  }
  #bookingCancelOverlay .booking-cancel-quote-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  #bookingCancelOverlay .booking-cancel-quote-empty-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.booking-cancel-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 170;
  display: grid;
  place-items: center;
  padding: 24px;
}
.booking-cancel-success-overlay.hidden {
  display: none;
}
.booking-cancel-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 31, 0.58);
  backdrop-filter: blur(12px);
}
.booking-cancel-success-card {
  position: relative;
  z-index: 1;
  width: min(440px, calc(100vw - 32px));
  padding: 22px 22px 18px;
  border-radius: 22px;
  display: grid;
  gap: 12px;
  text-align: center;
  background: radial-gradient(
      120% 120% at 0% 0%,
      rgba(24, 183, 107, 0.14),
      rgba(255, 255, 255, 0)
    ),
    rgba(247, 249, 252, 0.98);
  box-shadow: 0 28px 56px rgba(4, 12, 28, 0.28);
}
.booking-cancel-success-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 2px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #18b76b, #55d68f);
  box-shadow:
    0 12px 24px rgba(24, 183, 107, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.checkout-notice-icon.is-neutral {
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(135deg, #4b6cb7, #6b8cce);
  box-shadow:
    0 12px 24px rgba(75, 108, 183, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.booking-cancel-success-card h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.booking-cancel-success-message {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.booking-cancel-success-refund {
  display: grid;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(10, 132, 255, 0.06);
  border: 1px solid rgba(10, 132, 255, 0.12);
  text-align: left;
}
.booking-cancel-success-refund.hidden {
  display: none;
}
.booking-cancel-success-refund .caption {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}
.booking-cancel-success-ref-row {
  display: grid;
  gap: 4px;
}
.booking-cancel-success-ref-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.booking-cancel-success-ref-value {
  margin: 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 132, 255, 0.14);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  line-height: 1.35;
  color: var(--ink);
  word-break: break-all;
}
.booking-cancel-success-card .primary {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
}
.booking-change-success-ok {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
  border: none;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #18b76b, #55d68f);
  box-shadow: 0 12px 24px rgba(24, 183, 107, 0.24);
}
.booking-change-success-ok:hover {
  filter: brightness(1.04);
}
.booking-change-success-ok:focus-visible {
  outline: 2px solid rgba(24, 183, 107, 0.45);
  outline-offset: 2px;
}
[data-theme='dark'] .booking-cancel-success-card {
  background: radial-gradient(
      120% 120% at 0% 0%,
      rgba(24, 183, 107, 0.18),
      rgba(255, 255, 255, 0)
    ),
    rgba(18, 22, 30, 0.98);
}
[data-theme='dark'] .booking-cancel-success-refund {
  background: rgba(10, 132, 255, 0.1);
  border-color: rgba(10, 132, 255, 0.2);
}
[data-theme='dark'] .booking-cancel-success-ref-value {
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.08);
}
[data-theme='dark'] #bookingCancelOverlay .booking-cancel-sheet {
  border-color: rgba(255, 128, 99, 0.24);
  background: radial-gradient(
      135% 110% at 0% 0%,
      rgba(203, 72, 53, 0.24),
      rgba(203, 72, 53, 0) 56%
    ),
    radial-gradient(
      120% 100% at 100% 0%,
      rgba(200, 126, 51, 0.18),
      rgba(200, 126, 51, 0) 52%
    ),
    linear-gradient(180deg, rgba(13, 18, 32, 0.98), rgba(10, 14, 26, 0.96));
}
[data-theme='dark']
  #bookingCancelOverlay
  .booking-cancel-sheet
  .itinerary-sheet-head {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
[data-theme='dark'] #bookingCancelOverlay #bookingCancelClose,
[data-theme='dark'] #bookingCancelOverlay .booking-cancel-card,
[data-theme='dark'] #bookingCancelOverlay .booking-cancel-row,
[data-theme='dark'] #bookingCancelOverlay .booking-cancel-quote > .caption,
[data-theme='dark'] #bookingCancelOverlay .booking-cancel-quote-empty-title,
[data-theme='dark']
  #bookingCancelOverlay
  .booking-cancel-quote-empty-grid
  > div,
[data-theme='dark'] #bookingCancelOverlay .booking-cancel-quote-grid > div {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    180deg,
    rgba(17, 25, 42, 0.94),
    rgba(11, 17, 30, 0.92)
  );
}
[data-theme='dark'] #bookingCancelOverlay #bookingCancelStatus {
  border-color: rgba(255, 132, 102, 0.34);
  background: rgba(201, 76, 48, 0.2);
  color: #ffb5a0;
}
[data-theme='dark'] #bookingCancelOverlay #bookingCancelStatus.error {
  border-color: rgba(255, 119, 101, 0.34);
  background: rgba(180, 35, 24, 0.2);
  color: #ff9f94;
}
[data-theme='dark'] #bookingCancelOverlay .booking-cancel-notice {
  border-color: rgba(255, 132, 102, 0.28);
  background: rgba(201, 76, 48, 0.16);
  color: #ffb5a0;
}
[data-theme='dark'] #bookingCancelOverlay .booking-cancel-notice.error {
  border-color: rgba(255, 119, 101, 0.32);
  background: rgba(180, 35, 24, 0.18);
  color: #ff9f94;
}
[data-theme='dark'] #bookingCancelOverlay #bookingCancelConfirm:disabled {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(14, 20, 34, 0.92);
  color: rgba(236, 240, 248, 0.46);
}
/* Booking detail layout: restore the floating receipt + floating actions card. */
#bookingOverlay.itinerary-overlay .booking-detail-sheet {
  position: relative !important;
  inset: auto !important;
  width: min(1260px, calc(100vw - 48px)) !important;
  max-height: min(880px, calc(100vh - 48px)) !important;
  box-sizing: border-box;
  display: flex !important;
  align-items: flex-start;
  gap: 16px;
  padding: 12px;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  z-index: 1;
}
#bookingOverlay.itinerary-overlay .booking-detail-surface {
  box-sizing: border-box;
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  max-width: min(860px, calc(100vw - 360px));
  max-height: calc(100vh - 84px);
  overflow: hidden;
  display: block;
  position: relative;
}
#bookingOverlay.itinerary-overlay .booking-detail-timeline {
  max-height: calc(100vh - 84px);
  overflow-y: auto;
  overflow-x: hidden;
}
#bookingDetailTimeline {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
#bookingDetailTimeline::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}
#bookingOverlay.itinerary-overlay .booking-detail-surface,
#bookingOverlay.itinerary-overlay .booking-detail-timeline {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
#bookingOverlay.itinerary-overlay .booking-detail-surface::-webkit-scrollbar,
#bookingOverlay.itinerary-overlay .booking-detail-timeline::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}
#bookingOverlay.itinerary-overlay .booking-detail-scrollbar {
  display: none !important;
  position: relative;
  flex: 0 0 12px;
  width: 12px;
  min-width: 12px;
  max-width: 12px;
  margin: 0 10px 0 4px;
  align-self: stretch;
  background: linear-gradient(
    180deg,
    rgba(139, 94, 52, 0.18),
    rgba(139, 94, 52, 0.1)
  );
  border: 0;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  padding: 1px;
  overflow: hidden;
  z-index: 5;
  user-select: none;
  touch-action: none;
}
#bookingOverlay.itinerary-overlay,
#bookingOverlay.itinerary-overlay .booking-detail-sheet,
#bookingOverlay.itinerary-overlay .booking-detail-actions,
#bookingOverlay.itinerary-overlay .booking-detail-surface,
#bookingOverlay.itinerary-overlay .booking-detail-timeline {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
#bookingOverlay.itinerary-overlay::-webkit-scrollbar,
#bookingOverlay.itinerary-overlay .booking-detail-sheet::-webkit-scrollbar,
#bookingOverlay.itinerary-overlay .booking-detail-actions::-webkit-scrollbar,
#bookingOverlay.itinerary-overlay .booking-detail-surface::-webkit-scrollbar,
#bookingOverlay.itinerary-overlay .booking-detail-timeline::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}
/* Hard-disable the custom outer receipt scrollbar (source of the vertical line). */
#bookingDetailScrollbar,
#bookingDetailScrollThumb {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
#bookingOverlay.itinerary-overlay .booking-detail-scrollbar.hidden {
  display: none;
}
#bookingOverlay.itinerary-overlay .booking-detail-scroll-thumb {
  position: absolute;
  left: 1px;
  top: 1px;
  transform: none;
  width: calc(100% - 2px);
  min-height: 48px;
  border: 1px solid rgba(139, 94, 52, 0.28);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(162, 118, 71, 0.94),
    rgba(124, 89, 52, 0.9)
  );
  box-shadow:
    0 6px 12px rgba(124, 89, 52, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
  cursor: grab;
  z-index: 6;
  transition:
    box-shadow 0.18s ease,
    filter 0.18s ease;
}
#bookings
  #bookingOverlay.itinerary-overlay
  .booking-detail-scroll-thumb:active {
  cursor: grabbing;
  filter: brightness(0.98);
  box-shadow:
    0 6px 12px rgba(124, 89, 52, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
#bookingOverlay.itinerary-overlay .booking-detail-overview {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding: 2px 2px 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.14);
}
#bookingOverlay.itinerary-overlay .booking-detail-overview-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
#bookingOverlay.itinerary-overlay .booking-detail-overview-copy h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
  overflow-wrap: anywhere;
  word-break: break-word;
}
#bookings
  #bookingOverlay.itinerary-overlay
  .booking-detail-overview-copy
  .caption {
  margin: 0;
  max-width: 36rem;
}
#bookingOverlay.itinerary-overlay .booking-detail-overview-fare {
  display: grid;
  gap: 0;
  justify-items: end;
  min-width: 130px;
  text-align: right;
}
#bookingOverlay.itinerary-overlay .booking-detail-overview-fare span {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
#bookings
  #bookingOverlay.itinerary-overlay
  .booking-detail-overview-fare
  strong {
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
#bookingOverlay.itinerary-overlay .booking-detail-inline-close {
  position: relative;
  flex: 0 0 auto;
  align-self: flex-start;
  margin-top: 14px;
  margin-left: 12px;
  margin-right: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(15, 23, 42, 0.2);
  background: #ffffff;
  color: #0f172a;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 8;
  cursor: pointer;
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    filter 0.16s ease;
  pointer-events: auto;
}
#bookingOverlay.itinerary-overlay .booking-detail-inline-close span {
  display: inline-block;
  line-height: 1;
  font-size: 34px;
  font-weight: 900;
  transform: translateY(-1px);
}
#bookingOverlay.itinerary-overlay .booking-detail-inline-close.hidden {
  display: none !important;
}
#bookingOverlay.itinerary-overlay .booking-detail-inline-close:hover {
  transform: translateY(-2px) scale(1.06);
  filter: brightness(1.02) saturate(1.04);
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}
#bookingOverlay.itinerary-overlay .booking-detail-inline-close:active {
  transform: translateY(1px) scale(0.95);
}
#bookingOverlay.itinerary-overlay .booking-detail-inline-close:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.45);
  outline-offset: 2px;
}
#bookingOverlay .booking-detail-actions {
  position: fixed;
  top: 50%;
  right: clamp(16px, 3vw, 32px);
  transform: translateY(-50%);
  box-sizing: border-box;
  flex: 0 0 220px;
  width: 220px;
  min-width: 204px;
  max-width: 220px;
  z-index: 110;
  display: grid;
  gap: 9px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-left: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  padding: 12px 12px 12px 14px;
  border: 1px solid rgba(10, 132, 255, 0.2);
  border-radius: 18px;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.992),
      rgba(247, 250, 255, 0.975)
    ),
    repeating-linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.01) 0,
      rgba(15, 23, 42, 0.01) 1px,
      transparent 1px,
      transparent 18px
    ),
    rgba(255, 255, 255, 0.96);
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
}
#bookingOverlay .booking-detail-actions::before {
  content: none;
}
#bookingOverlay .booking-detail-actions::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 7px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(10, 132, 255, 0.13),
    transparent
  );
  pointer-events: none;
}
#bookingOverlay .booking-detail-actions-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 8px;
  row-gap: 0;
  width: 100%;
  min-height: 26px;
}
#bookingOverlay .booking-detail-actions-head .eyebrow {
  margin: 0;
  white-space: nowrap;
  min-width: 0;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2563eb;
  font-weight: 800;
}
#bookingOverlay .booking-detail-actions-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow:
    0 10px 20px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    filter 0.16s ease,
    border-color 0.16s ease;
}
#bookingOverlay .booking-detail-actions-close span {
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}
#bookingOverlay .booking-detail-actions-close:hover {
  transform: translateY(-2px) scale(1.04);
  filter: brightness(1.04) saturate(1.04);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow:
    0 14px 26px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}
#bookingOverlay .booking-detail-actions-close:active {
  transform: translateY(1px) scale(0.98);
  box-shadow:
    0 8px 14px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
#bookingOverlay .booking-detail-actions-close:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.35);
  outline-offset: 2px;
}
#bookingOverlay .booking-detail-actions-row {
  display: grid;
  gap: 7px;
}
#bookingOverlay .booking-detail-actions-row .booking-action-button {
  width: 100%;
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  padding: 9px 12px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    filter 0.16s ease,
    background 0.16s ease;
  box-shadow:
    0 10px 18px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
#bookingOverlay .booking-detail-actions-row .booking-action-button-print {
  background: linear-gradient(
    180deg,
    rgba(8, 145, 178, 0.96),
    rgba(7, 89, 133, 0.94)
  );
  color: #f8fbff;
}
#bookingOverlay .booking-detail-actions-row .booking-action-button-change {
  background: linear-gradient(
    180deg,
    rgba(180, 83, 9, 0.96),
    rgba(217, 119, 6, 0.92)
  );
  color: #fff8ed;
}
#bookingOverlay .booking-detail-actions-row .booking-action-button-cancel {
  background: linear-gradient(
    180deg,
    rgba(153, 27, 27, 0.96),
    rgba(185, 28, 28, 0.92)
  );
  color: #fff5f5;
}
#bookings
  .booking-detail-actions-row
  .booking-action-button-payment.is-loading {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(
    135deg,
    rgba(22, 163, 74, 0.96),
    rgba(34, 197, 94, 0.92),
    rgba(22, 163, 74, 0.96)
  );
  background-size: 220% 220%;
  animation: searchButtonShimmer 1.2s ease-in-out infinite;
  box-shadow:
    0 14px 24px rgba(22, 163, 74, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  cursor: wait;
}
#bookings
  .booking-detail-actions-row
  .booking-action-button-payment.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transform: translateX(-120%);
  animation: searchButtonSweep 1.2s ease-in-out infinite;
  pointer-events: none;
}
#bookingOverlay .booking-detail-actions-row .booking-action-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05) saturate(1.05);
  box-shadow:
    0 16px 28px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}
#bookingOverlay .booking-detail-actions-row .booking-action-button.is-hovered {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.05) saturate(1.05);
  box-shadow:
    0 16px 28px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}
#bookingOverlay .booking-detail-actions-row .booking-action-button:active {
  transform: translateY(0);
  filter: brightness(0.98) saturate(0.98);
  box-shadow:
    0 8px 14px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}
#bookingOverlay .booking-detail-actions-row .booking-action-button.is-pressed {
  transform: translateY(1px) scale(0.99);
  filter: brightness(0.98) saturate(0.98);
  box-shadow:
    0 8px 14px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}
#bookingOverlay
  .booking-detail-actions-row
  .booking-action-button:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.35);
  outline-offset: 2px;
}
#bookingOverlay .booking-detail-actions-close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(15, 23, 42, 0.12);
}
#bookingOverlay .booking-detail-actions-close:active {
  transform: translateY(0);
}
#bookingOverlay
  .booking-detail-actions-row
  .booking-action-button:focus-visible,
#bookingOverlay .booking-detail-actions-close:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.45);
  outline-offset: 2px;
}
#bookingOverlay.itinerary-overlay .booking-detail-sheet.is-desktop-receipt {
  width: min(1140px, calc(100vw - 48px));
  max-height: min(880px, calc(100dvh - 48px));
}
#bookingOverlay.itinerary-overlay
  .booking-detail-sheet.is-desktop-receipt
  .booking-detail-surface {
  flex: 0 0 760px;
  width: 760px;
  max-width: calc(100vw - 320px);
  max-height: calc(100dvh - 84px);
}
[data-theme='dark']
  #bookings
  #bookingOverlay.itinerary-overlay
  .booking-detail-surface,
[data-theme='dark']
  #bookings
  #bookingOverlay.itinerary-overlay
  .booking-detail-timeline {
  background: transparent;
}
[data-theme='dark'] .booking-detail-sheet .booking-doc {
  color: #e2e8f0;
  background: linear-gradient(
      180deg,
      rgba(30, 41, 59, 0.98),
      rgba(15, 23, 42, 0.96)
    ),
    repeating-linear-gradient(
      180deg,
      rgba(148, 163, 184, 0.06) 0,
      rgba(148, 163, 184, 0.06) 1px,
      transparent 1px,
      transparent 22px
    );
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow:
    0 30px 70px rgba(2, 6, 23, 0.45),
    0 8px 20px rgba(2, 6, 23, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
[data-theme='dark'] #bookingOverlay .booking-detail-card::before,
[data-theme='dark'] #bookings .booking-detail-card::before {
  content: none;
}
[data-theme='dark'] .booking-detail-sheet .booking-doc::before {
  content: none;
}
[data-theme='dark'] .booking-detail-sheet .booking-doc-hero,
[data-theme='dark'] .booking-detail-sheet .booking-doc-subsection,
[data-theme='dark'] .booking-detail-sheet .booking-doc-trip-list--stacked,
[data-theme='dark'] .booking-detail-sheet .booking-doc-trip-meta,
[data-theme='dark'] .booking-detail-sheet .booking-manifest-row-col--extras {
  border-color: rgba(148, 163, 184, 0.16);
}
[data-theme='dark'] .booking-receipt-fare-breakdown {
  border-color: rgba(148, 163, 184, 0.2);
  background: rgba(2, 6, 23, 0.72);
}
[data-theme='dark'] .booking-receipt-fare-row {
  border-color: rgba(148, 163, 184, 0.12);
}
[data-theme='dark'] .booking-receipt-fare-row span {
  color: #94a3b8;
}
[data-theme='dark'] .booking-receipt-fare-row strong {
  color: #f1f5f9;
}
[data-theme='dark'] .booking-receipt-fare-row--total {
  background: rgba(37, 99, 235, 0.16);
  border-color: rgba(96, 165, 250, 0.22);
}
[data-theme='dark'] .booking-receipt-fare-row--total span,
[data-theme='dark'] .booking-receipt-fare-row--total strong {
  color: #f8fafc;
}
[data-theme='dark'] .booking-detail-sheet .booking-doc-hero-copy h3,
[data-theme='dark']
  #bookings
  #bookingOverlay.itinerary-overlay
  .booking-detail-overview-copy
  h3,
[data-theme='dark'] .booking-detail-sheet .booking-doc-fare strong,
[data-theme='dark']
  #bookings
  #bookingOverlay.itinerary-overlay
  .booking-detail-overview-fare
  strong,
[data-theme='dark'] .booking-detail-sheet .booking-doc-panel-head h4,
[data-theme='dark'] .booking-detail-sheet .booking-doc-trip-head strong,
[data-theme='dark'] .booking-detail-sheet .booking-doc-trip-flight,
[data-theme='dark'] .booking-detail-sheet .booking-doc-trip-airline-name,
[data-theme='dark'] .booking-detail-sheet .booking-doc-station strong,
[data-theme='dark'] .booking-detail-sheet .booking-doc-keyvalue strong,
[data-theme='dark'] .booking-detail-sheet .booking-manifest-row-head span,
[data-theme='dark'] .booking-detail-sheet .booking-manifest-field strong,
[data-theme='dark'] .booking-detail-sheet .booking-manifest-contact-row strong {
  color: #f8fafc;
}
[data-theme='dark'] .booking-detail-sheet .booking-doc-chip,
[data-theme='dark']
  #bookings
  #bookingOverlay.itinerary-overlay
  .booking-detail-overview-copy
  .caption,
[data-theme='dark'] .booking-detail-sheet .booking-doc-fare span,
[data-theme='dark']
  #bookings
  #bookingOverlay.itinerary-overlay
  .booking-detail-overview-fare
  span,
[data-theme='dark'] .booking-detail-sheet .booking-doc-fare small,
[data-theme='dark'] .booking-detail-sheet .booking-doc-panel-head .caption,
[data-theme='dark'] .booking-detail-sheet .booking-doc-panel-head--sub h4,
[data-theme='dark'] .booking-detail-sheet .booking-doc-panel-count,
[data-theme='dark'] .booking-detail-sheet .booking-doc-trip-label,
[data-theme='dark'] .booking-detail-sheet .booking-doc-station span,
[data-theme='dark'] .booking-detail-sheet .booking-doc-station small,
[data-theme='dark'] .booking-detail-sheet .booking-doc-station-layover small,
[data-theme='dark'] .booking-detail-sheet .booking-doc-trip-meta,
[data-theme='dark'] .booking-detail-sheet .booking-doc-trip-meta span,
[data-theme='dark'] .booking-detail-sheet .booking-doc-keyvalue span,
[data-theme='dark'] .booking-detail-sheet .booking-manifest-field span,
[data-theme='dark'] .booking-detail-sheet .booking-manifest-contact-row span,
[data-theme='dark'] .booking-detail-sheet .booking-doc-hero-copy .caption,
[data-theme='dark'] .booking-detail-sheet .booking-doc-baggage-text,
[data-theme='dark'] .booking-detail-sheet .booking-doc-baggage-icon {
  color: #94a3b8;
}
[data-theme='dark'] .booking-detail-sheet .booking-doc-chip {
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.04);
}
[data-theme='dark']
  .booking-detail-sheet
  .booking-doc-journey-status.is-confirmed {
  color: #0f7a3f;
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.32);
}
[data-theme='dark']
  .booking-detail-sheet
  .booking-doc-journey-status.is-completed {
  color: #1d4ed8;
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.32);
}
[data-theme='dark']
  .booking-detail-sheet
  .booking-doc-journey-status.is-cancelled {
  color: #b42318;
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(239, 68, 68, 0.32);
}
[data-theme='dark']
  .booking-detail-sheet
  .booking-doc-journey-status.is-pending {
  color: #c2410c;
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.34);
}
[data-theme='dark'] .booking-detail-sheet .booking-doc-chip-accent {
  background: linear-gradient(
    135deg,
    rgba(0, 113, 227, 0.12),
    rgba(10, 132, 255, 0.08)
  );
  color: #0b4f91;
}
[data-theme='dark'] .booking-detail-sheet .booking-doc-panel,
[data-theme='dark'] .booking-detail-sheet .booking-doc-panel--combined,
[data-theme='dark'] .booking-detail-sheet .booking-doc-trip,
[data-theme='dark'] .booking-detail-sheet .booking-manifest-row,
[data-theme='dark']
  .booking-detail-sheet
  .booking-manifest-contact-list--inline
  .booking-manifest-contact-row {
  border-color: rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 6px 16px rgba(2, 6, 23, 0.2);
}
[data-theme='dark'] .booking-detail-sheet .booking-doc-keyvalues,
[data-theme='dark'] .booking-detail-sheet .booking-doc-trip-meta-stack,
[data-theme='dark'] .booking-detail-sheet .booking-doc-subsection {
  border-color: rgba(148, 163, 184, 0.14);
}
[data-theme='dark'] .booking-detail-sheet .booking-doc-keyvalue {
  border-bottom-color: rgba(148, 163, 184, 0.12);
}
[data-theme='dark']
  .booking-detail-sheet
  .booking-doc-trip-meta
  span
  + span::before {
  color: rgba(148, 163, 184, 0.45);
}
[data-theme='dark'] .booking-detail-sheet .booking-manifest-row-col--extras {
  border-left-color: rgba(148, 163, 184, 0.16);
}
[data-theme='dark']
  .booking-detail-sheet
  .booking-doc-trip-meta
  span
  + span::before {
  color: rgba(148, 163, 184, 0.45);
}
[data-theme='dark'] #bookings .booking-manifest-card--receipt,
[data-theme='dark'] #bookings .booking-ticket-list,
[data-theme='dark'] #bookings .booking-trip-row,
[data-theme='dark'] #bookings .booking-person-row,
[data-theme='dark'] #bookings .booking-contact-card,
[data-theme='dark'] #bookings .booking-payment-row {
  border-color: rgba(15, 23, 42, 0.06);
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9),
      rgba(252, 253, 255, 0.84)
    ),
    rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 1px 0 rgba(15, 23, 42, 0.02);
}
[data-theme='dark'] #bookingOverlay.itinerary-overlay .booking-detail-actions {
  border-color: rgba(115, 156, 255, 0.22);
  background: linear-gradient(
      180deg,
      rgba(15, 22, 37, 0.98),
      rgba(10, 16, 28, 0.98)
    ),
    radial-gradient(
      circle at top right,
      rgba(74, 165, 255, 0.12),
      transparent 36%
    );
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
[data-theme='dark']
  #bookingOverlay.itinerary-overlay
  .booking-detail-actions::before {
  content: none;
}
[data-theme='dark']
  #bookingOverlay.itinerary-overlay
  .booking-detail-actions::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(84, 135, 255, 0.16),
    transparent
  );
}
[data-theme='dark']
  #bookingOverlay.itinerary-overlay
  .booking-detail-actions-head
  .eyebrow {
  color: #8eb6ff;
}
[data-theme='dark']
  #bookingOverlay.itinerary-overlay
  .booking-detail-actions-close {
  border-color: rgba(115, 156, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #eef4ff;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
[data-theme='dark']
  #bookingOverlay.itinerary-overlay
  .booking-detail-actions-close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(143, 177, 255, 0.3);
}
#bookingOverlay.itinerary-overlay .booking-manifest-row-grid {
  gap: 10px !important;
}
#bookingOverlay.itinerary-overlay
  .booking-manifest-field.booking-manifest-field-baggage {
  display: flex !important;
  align-items: baseline;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 0 !important;
}
#bookingOverlay.itinerary-overlay
  .booking-manifest-field.booking-manifest-field-baggage
  > span {
  flex: 0 0 auto;
}
#bookingOverlay.itinerary-overlay .booking-manifest-baggage-value {
  margin-left: 0 !important;
  width: auto;
  display: inline-flex !important;
  align-items: baseline;
  justify-content: flex-start;
}
#bookingOverlay.itinerary-overlay
  .booking-manifest-field.booking-manifest-field-baggage
  .booking-doc-baggage-inline {
  justify-content: flex-start;
}
@media (max-width: 720px) {
  #bookings .booking-ticket-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 280px));
    justify-content: start;
  }
  #bookings .booking-ticket-tile {
    gap: 9px;
    padding: 14px 14px 13px;
  }
  #bookings .booking-ticket-leg {
    gap: 3px;
  }
  #bookings .booking-ticket-leg strong {
    font-size: 12px;
  }
  #bookings .booking-ticket-leg-meta {
    gap: 2px;
  }
  #bookings .booking-ticket-leg-meta span {
    font-size: 10.5px;
    line-height: 1.24;
  }
  #bookings .booking-ticket-leg-meta span:first-child {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-wrap: pretty;
  }
  #bookingOverlay.itinerary-overlay {
    padding: max(8px, env(safe-area-inset-top, 0px))
      max(8px, env(safe-area-inset-right, 0px))
      max(8px, env(safe-area-inset-bottom, 0px))
      max(8px, env(safe-area-inset-left, 0px));
    align-items: stretch;
    justify-content: stretch;
  }
  #bookingOverlay.itinerary-overlay .booking-detail-sheet,
  #bookingOverlay.itinerary-overlay .booking-detail-sheet.is-compact-receipt {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    height: calc(
      100dvh - 16px - env(safe-area-inset-top, 0px) -
        env(safe-area-inset-bottom, 0px)
    ) !important;
    max-height: calc(
      100dvh - 16px - env(safe-area-inset-top, 0px) -
        env(safe-area-inset-bottom, 0px)
    ) !important;
    inset: auto !important;
    padding: 10px !important;
    gap: 10px !important;
    min-height: 0;
    overflow: hidden;
  }
  #bookingOverlay.itinerary-overlay .booking-detail-surface {
    order: 1;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    max-height: none !important;
    flex: 1 1 auto !important;
    overflow: hidden !important;
  }
  #bookingOverlay.itinerary-overlay .booking-detail-overview {
    flex-direction: column;
    align-items: stretch;
  }
  #bookingOverlay.itinerary-overlay .booking-detail-overview-fare {
    justify-items: start;
    text-align: left;
  }
  #bookingOverlay .booking-detail-actions {
    order: 2;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    flex: 0 0 auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin-left: 0 !important;
    align-self: stretch !important;
    padding-bottom: max(10px, env(safe-area-inset-bottom, 0px));
  }
  #bookingOverlay.itinerary-overlay .booking-detail-inline-close {
    margin-top: 10px;
    margin-left: -10px;
    margin-right: 0;
    width: 38px;
    height: 38px;
    font-size: 26px;
  }
  #bookingOverlay.itinerary-overlay .booking-detail-timeline {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
  }

  #bookingOverlay.itinerary-overlay .booking-detail-actions-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  #bookingOverlay.itinerary-overlay
    .booking-detail-actions-row
    .booking-action-button {
    min-height: 44px;
    width: 100%;
    font-size: 12px;
    padding: 10px 10px;
    line-height: 1.2;
    white-space: normal;
    text-wrap: balance;
    text-align: center;
  }

  .booking-detail-sheet .booking-doc-hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .booking-detail-sheet .booking-doc-hero-copy {
    flex: 1 1 auto;
    min-width: 0;
  }

  .booking-detail-sheet .booking-doc-fare {
    flex: 0 0 auto;
    justify-items: end;
    text-align: right;
    min-width: 72px;
    width: auto;
  }

  .booking-detail-sheet .booking-doc-journey-status {
    max-width: 100%;
  }

  .booking-detail-sheet .booking-doc-journey-status span:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .booking-detail-sheet .booking-doc-trip-stations,
  .booking-detail-sheet .booking-doc-trip-stations.has-layover {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .booking-detail-sheet .booking-doc-trip-airline-stack {
    grid-column: 1;
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
  }

  .booking-detail-sheet .booking-manifest-contact-list--inline,
  .booking-detail-sheet .booking-manifest-row-grid,
  .booking-detail-sheet .booking-manifest-row-split {
    grid-template-columns: 1fr;
  }
}
