/**
 * Flight Status CSS – consolidated styles for all FlightStatus desktop components.
 * Aligned with Flights-UI (src/desktop/components/FlightStatus).
 * Load via baseFlightStatus.min.css in Head.js.
 */

/* ==========================================================================
   1. BASE UTILITIES
   ========================================================================== */

/* Flex */
.makeFlex,
.make_flex {
  display: flex;
}
.makeFlex .flexOne {
  flex: 1;
}
.makeFlex.spaceBetween {
  justify-content: space-between;
}
.makeFlex.hrtlCenter {
  align-items: center;
}
.makeFlex.bottom {
  align-items: flex-end;
}
.makeFlex.alignCenter {
  align-items: center;
}
.makeFlex.right {
  justify-content: flex-end;
}
.makeFlex.rowReverse {
  flex-direction: row-reverse;
}
.makeFlex.perfectCenter {
  align-items: center;
  justify-content: center;
}
.makeFlex.flexWrap {
  flex-wrap: wrap;
}
.flexCol {
  display: flex;
  flex-direction: column;
}
/* Width */
.wdth100 {
  width: 100%;
}
/* Background */
.whiteBg {
  background: #ffffff;
}
/* Border radius */
.br4 {
  border-radius: 4px;
}
.br8 {
  border-radius: 8px;
}
/* Gaps */
.gap4 {
  gap: 4px;
}
.gap6 {
  gap: 6px;
}
.gap8 {
  gap: 8px;
}
.gap10 {
  gap: 10px;
}
.gap12 {
  gap: 12px;
}
.gap16 {
  gap: 16px;
}
.gap24 {
  gap: 24px;
}
.gap32 {
  gap: 32px;
}
/* Font sizes */
.fontSize12 {
  font-size: calc(var(--font-scale, 1) * 12px);
}
.fontSize14 {
  font-size: calc(var(--font-scale, 1) * 14px);
}
.fontSize16 {
  font-size: calc(var(--font-scale, 1) * 16px);
}
.fontSize18 {
  font-size: calc(var(--font-scale, 1) * 18px);
}
.fontSize20 {
  font-size: calc(var(--font-scale, 1) * 20px);
}
.fontSize22 {
  font-size: calc(var(--font-scale, 1) * 22px);
}
.fontSize24 {
  font-size: calc(var(--font-scale, 1) * 24px);
}
.fontSize32 {
  font-size: calc(var(--font-scale, 1) * 32px);
}
.fontSize36 {
  font-size: calc(var(--font-scale, 1) * 36px);
}
/* Font weight */
.boldFont {
  font-weight: var(--font-bold, 700);
}
.blackFont {
  font-weight: var(--font-bolder, 900);
}
/* Colors */
.darkText {
  color: var(--darkGrey-color, #4a4a4a);
}
/* Text align */
.textLeft {
  text-align: left;
}
.textRight {
  text-align: right;
}
.textCenter {
  text-align: center;
}
/* Line height */
.lh14 {
  line-height: 14px;
}
.lh16 {
  line-height: 16px;
}
/* Margin bottom */
.appendBottom8 {
  margin-bottom: 8px;
}
.appendBottom12 {
  margin-bottom: 12px;
}
.appendBottom16 {
  margin-bottom: 16px;
}
.appendBottom20 {
  margin-bottom: 20px;
}
.appendBottom24 {
  margin-bottom: 24px;
}
/* Margin top */
.appendTop4 {
  margin-top: 4px;
}
.appendTop8 {
  margin-top: 8px;
}
/* Padding */
.padding10 {
  padding: 10px;
}
.padding16 {
  padding: 16px;
}
.padding24 {
  padding: 24px;
}
.padding1624 {
  padding: 16px 24px;
}
.paddingTop10 {
  padding-top: 10px;
}
/* Icon size */
.icon16 {
  width: 16px;
  height: 16px;
}
.icon24 {
  width: 24px;
  height: 24px;
}
/* Background for icon */
.bgProperties {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
}
/* Utility for layout */
.right {
  justify-content: flex-end;
}

/* ==========================================================================
   2. PAGE LAYOUT (FlightStatusPage)
   ========================================================================== */

.flight-status-page-wrapper {
  position: relative;
  width: 100%;
}

.pageStickyHder {
  background: #041422;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 8;
}

.bgGradient {
  background-image: linear-gradient(to top, #15457b, #051423);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 90px;
}

.fsd-content-wrap {
  position: relative;
  z-index: 2;
  padding: 0 10px;
}

.fsd-seo-content-middle {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   3. FLIGHT STATUS HEADER (fs-header__)
   ========================================================================== */

.fs-header {
  min-height: 72px;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.fs-header__row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.fs-header__type {
  background: #27394f;
  border-radius: 4px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  min-width: 180px;
  height: 56px;
  justify-content: center;
  position: relative;
}

.fs-header__type-label {
  color: #008cff;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.fs-header__type-btn {
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.fs-header__type-value {
  color: #ffffff;
  font-weight: 400;
  margin-right: 8px;
}

.fs-header__type-value font {
  color: #ffffff;
}

.fs-header__dropdown li font {
  color: #9b9b9b;
}

.fs-header__dropdown li:hover font {
  color: #ffffff;
}

.fs-header__chevron {
  width: 16px;
  height: 16px;
  display: inline-block;
  background:
    url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 6L8 10L12 6" stroke="%23D8D8D8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>')
    center/contain no-repeat;
}

.fs-header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 1px 6px 0 rgb(0 0 0 / 0.2);
  z-index: 2000;
  min-width: 180px;
  margin-top: 4px;
  padding: 0;
  width: 180px;
  overflow: hidden;
  list-style: none;
}

.fs-header__dropdown-item {
  color: #9b9b9b;
  padding: 8px 10px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: 0;
  font-weight: 700;
}

.fs-header__dropdown-item.selected,
.fs-header__dropdown-item:hover {
  color: #ffffff !important;
  background: #008cff;
  border-radius: 0;
}

.fs-header__dropdown-item.selected font {
  color: #ffffff;
}

.fs-header__dropdown-item:first-child:hover {
  border-radius: 4px 4px 0 0;
}

.fs-header__dropdown-item:last-child:hover {
  border-radius: 0 0 4px 4px;
}

.fs-header__fields {
  flex: 1;
  display: flex;
  gap: 16px;
  min-width: 0;
  margin-right: 0;
}

.fs-header__field {
  background: #27394f;
  border-radius: 4px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  min-width: 180px;
  height: 56px;
  justify-content: center;
  position: relative;
  flex: 1;
}

.fs-header__field input::placeholder {
  text-transform: none;
}

.fs-header__field-label {
  color: #008cff;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.fs-header__field-input {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-weight: 400;
  padding: 0;
  min-height: 24px;
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
}

.fs-header__field-input--autocomplete {
  padding-bottom: 4px;
  background: transparent;
  transition: border-color 0.2s;
}

.fs-header__field-input--datepicker {
  padding-bottom: 4px;
  background: transparent;
  transition: border-color 0.2s;
}

.fs-header__field-input--captext {
  text-transform: uppercase;
}

.fs-header__search-btn {
  width: 176px;
  height: 40px;
}

.fs-header__search-btn button {
  width: 100%;
  height: 100%;
  font-size: calc(var(--font-scale, 1) * 18px);
  border-radius: 4px;
  border: none;
  cursor: pointer;
  background: #008cff;
  color: #fff;
  font-weight: 600;
}

.fs-header__search-btn button:hover:not(:disabled) {
  background: #0077dd;
}

.fs-header__search-btn button:disabled {
  cursor: not-allowed;
  background: #c2c2c2;
}

.fs-overlayBg {
  background: rgba(0, 0, 0, 0);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}

.fs-header .downArrow {
  position: absolute;
  right: 10% !important;
  top: 13px;
  pointer-events: none;
  transform: none !important;
  left: auto;
}

.fs-header .downArrow::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #ffffff;
  border-bottom: 5px solid transparent;
  position: absolute;
  top: -13px;
  z-index: 1;
}

.fs-header .downArrow::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #243950;
  border-bottom: 5px solid transparent;
  position: absolute;
  top: -14px;
  z-index: 2;
}

.datePickerWrapper,
.autocompletePopupWrapper {
  z-index: 1001;
}

.datePickerWrapper {
  position: absolute;
  z-index: 1000;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  right: 0;
}

/* DayPicker overrides scoped to .flight-status-search */
.flight-status-search .datePickerContainer {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin-top: 8px;
}

.flight-status-search .dayPickerFlightWrap {
  display: flex;
  flex-direction: column;
}

.flight-status-search .dayPickerFlightWrap .DayPicker {
  font-size: 10px;
}

.flight-status-search .DayPicker {
  width: 100%;
}

.flight-status-search .DayPicker-wrapper {
  outline: 0;
}

.flight-status-search .DayPicker-Months {
  width: 100%;
  flex: 1;
}

.flight-status-search .DayPicker-Month {
  width: 45%;
}

.flight-status-search .DayPicker-Day {
  height: 48px;
  color: #000000;
  outline: 0;
  border: 0;
  min-width: 53px;
  padding: 4px 0;
}

.flight-status-search .DayPicker-Day--start.DayPicker-Day--selected:not(
.DayPicker-Day--disabled,
.DayPicker-Day--outside) {
  background-color: #008cff;
  color: #ffffff;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.flight-status-search .DayPicker-Day--end.DayPicker-Day--selected:not(
.DayPicker-Day--disabled,
.DayPicker-Day--outside) {
  background-color: #008cff;
  color: #ffffff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.flight-status-search .DayPicker-Caption {
  margin-bottom: 25px;
}

.flight-status-search .DayPicker-Caption > div {
  font-size: calc(var(--font-scale, 1) * 18px);
  font-weight: bolder;
  color: #000000;
  text-align: center;
}

.flight-status-search .DayPicker-Caption > div > span {
  font-weight: bold;
  font-size: calc(var(--font-scale, 1) * 18px);
  line-height: 20px;
  margin-left: 5px;
}

.flight-status-search .DayPicker-Weekday {
  font-weight: bold;
}

.flight-status-search .DayPicker-NavBar .DayPicker-NavButton--prev {
  top: 17px;
  left: 30px;
  cursor: pointer;
  z-index: 100;
  width: 16px;
  height: 13px;
  background-position: -5px -21px;
  background-image: url("//imgak.mmtcdn.com/pwa_v3/pwa_commons_assets/desktop/spriteModifySearch.png");
  background-size: 50px 50px;
  transform: rotate(-180deg);
  outline: 0;
  border: 0;
}

.flight-status-search .DayPicker-NavBar .DayPicker-NavButton--next {
  top: 17px;
  right: 30px;
  cursor: pointer;
  z-index: 100;
  width: 16px;
  height: 13px;
  background-position: -5px -21px;
  background-image: url("//imgak.mmtcdn.com/pwa_v3/pwa_commons_assets/desktop/spriteModifySearch.png");
  background-size: 50px 50px;
  outline: 0;
  border: 0;
}

html[dir="rtl"] .flight-status-search .DayPicker-NavBar .DayPicker-NavButton--prev {
  top: 17px;
  right: 10px;
  left: auto;
  transform: none;
}

html[dir="rtl"] .flight-status-search .DayPicker-NavBar .DayPicker-NavButton--next {
  top: 17px;
  left: 30px;
  right: auto;
  transform: rotate(180deg);
}

html[dir="rtl"] .flight-status-search .DayPicker-Months {
  font-size: calc(var(--font-scale, 1) * 12px);
}

html[dir="rtl"] .flight-status-search .DayPicker-Day--end.DayPicker-Day--selected:not(
.DayPicker-Day--disabled,
.DayPicker-Day--outside) {
  border-radius: 5px 0 0 5px;
}

html[dir="rtl"] .flight-status-search .DayPicker-Day--start.DayPicker-Day--selected:not(
.DayPicker-Day--disabled,
.DayPicker-Day--outside) {
  border-radius: 0 5px 5px 0;
}

.flight-status-search .dayPickerFlightWrap :global(.DayPicker) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  user-select: none;
  padding: 1rem;
  outline: none;
}

.flight-status-search .dayPickerFlightWrap :global(.DayPicker-Month) {
  display: table;
  border-collapse: collapse;
  border-spacing: 0;
  user-select: none;
  margin: 0 1rem;
}

.flight-status-search .dayPickerFlightWrap :global(.DayPicker-NavBar) {
  position: absolute;
  left: 0;
  right: 0;
  padding: 0 0.5rem;
  top: 1rem;
  z-index: 1;
}

.flight-status-search .dayPickerFlightWrap :global(.DayPicker-NavButton) {
  position: absolute;
  cursor: pointer;
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  color: #8b9898;
  transform: rotate(-45deg);
  transition: transform 0.2s;
}

.flight-status-search .dayPickerFlightWrap :global(.DayPicker-NavButton--prev) {
  left: 1rem;
  transform: rotate(135deg);
}

.flight-status-search .dayPickerFlightWrap :global(.DayPicker-NavButton--next) {
  right: 1rem;
  transform: rotate(-45deg);
}

.flight-status-search .dayPickerFlightWrap :global(.DayPicker-NavButton:hover) {
  opacity: 0.8;
}

.flight-status-search .dayPickerFlightWrap :global(.DayPicker-Caption) {
  display: table-caption;
  text-align: center;
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
}

.flight-status-search .dayPickerFlightWrap :global(.DayPicker-Weekdays) {
  display: table-header-group;
  margin-top: 1rem;
}

.flight-status-search .dayPickerFlightWrap :global(.DayPicker-WeekdaysRow) {
  display: table-row;
}

.flight-status-search .dayPickerFlightWrap :global(.DayPicker-Weekday) {
  display: table-cell;
  padding: 0.5rem;
  font-size: 0.875rem;
  text-align: center;
  color: #8b9898;
}

.flight-status-search .dayPickerFlightWrap :global(.DayPicker-Body) {
  display: table-row-group;
}

.flight-status-search .dayPickerFlightWrap :global(.DayPicker-Week) {
  display: table-row;
}

.flight-status-search .dayPickerFlightWrap :global(.DayPicker-Day) {
  display: table-cell;
  padding: 0.5rem;
  border: 0;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  outline: none;
  border-radius: 50%;
  font-size: 0.875rem;
}

.flight-status-search .dayPickerFlightWrap :global(.DayPicker-Day--today) {
  color: #008cff;
  font-weight: 700;
}

.flight-status-search .dayPickerFlightWrap :global(.DayPicker-Day--selected) {
  background-color: #008cff;
  color: #ffffff;
}

.flight-status-search .dayPickerFlightWrap :global(.DayPicker-Day--disabled) {
  color: #dce0e0;
  cursor: default;
  background: #f5f5f5;
}

.flight-status-search .dayPickerFlightWrap :global(.DayPicker-Day--outside) {
  cursor: default;
  color: #dce0e0;
}

.flight-status-search .dayPickerFlightWrap :global(
.DayPicker-Day:hover:not(
  .DayPicker-Day--disabled,
  .DayPicker-Day--selected,
  .DayPicker-Day--outside)) {
  background-color: #eaf5ff;
  color: #008cff;
}

.flight-status-search .dayPickerFlightWrap .DayPicker-Day--selected,
.flight-status-search .dayPickerFlightWrap .DayPicker-Day--selected:hover {
  background-color: var(--primary-blue-color, #008cff);
  color: #ffffff;
}

.flight-status-search .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Day:not(
.DayPicker-Day--disabled,
.DayPicker-Day--selected,
.DayPicker-Day--outside):hover {
  border-radius: 0;
}

.flight-status-search .dayPickerFlightWrap .DayPicker-Day--selected.DayPicker-Day--start,
.flight-status-search .dayPickerFlightWrap .DayPicker-Day--selected.DayPicker-Day--end {
  font-weight: 600;
  border-radius: 5px;
}

.flight-status-search .dayPickerFlightWrap .DayPicker-Day--end,
.flight-status-search .dayPickerFlightWrap .DayPicker-Day--end:hover {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.flight-status-search .dayPickerFlightWrap .DayPicker-Day--start,
.flight-status-search .dayPickerFlightWrap .DayPicker-Day--start:hover {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.flight-status-search .dayPickerFlightWrap .DayPicker-Day--selected:not(.DayPicker-Day--disabled, .DayPicker-Day--outside) {
  border-radius: 5px;
  background-color: #008cff;
  font-weight: 600;
  color: #ffffff;
}

/* ==========================================================================
   4. FLIGHT STATUS DETAIL (fsd-container)
   ========================================================================== */

.fsd-container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0px;
}

.fsd-disclaimer {
  padding: 12px;
  background: transparent;
  font-size: 14px;
  color: #4a4a4a;
}

/* ==========================================================================
   5. FLIGHT STATUS TIMING (fsd-)
   ========================================================================== */

.fsd-timing {
  background: #eaf5ff;
  border-radius: 8px;
  font-family: Lato, sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.fsd-title-bar {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  background: #eaf5ff;
  border-radius: 8px 8px 0 0;
  gap: 12px;
}

.fsd-airline-icon {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.fsd-flight-code {
  font-size: calc(var(--font-scale, 1) * 16px);
  font-weight: 700;
  color: #000000;
  margin-right: 8px;
}

.fsd-title-separator {
  width: 6px;
  height: 6px;
  background: #4a4a4a;
  border-radius: 50%;
  margin: 0 8px;
  display: inline-block;
}

.fsd-airline-name {
  font-size: calc(var(--font-scale, 1) * 16px);
  font-weight: 400;
  color: #4a4a4a;
}

.fsd-card-body {
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.fsd-main-row {
  display: flex;
  gap: 24px;
}

.fsd-block {
  flex: 1;
  border: 1px solid;
  border-radius: 8px;
  padding: 20px 12px;
}

.fsd-block-label {
  font-size: calc(var(--font-scale, 1) * 14px);
  color: #4a4a4a;
  font-weight: 400;
  margin-bottom: 4px;
}

.fsd-block-city {
  font-size: calc(var(--font-scale, 1) * 32px);
  font-weight: 900;
  color: #000000;
  margin-bottom: 4px;
}

.fsd-block-airport {
  font-size: calc(var(--font-scale, 1) * 18px);
  font-weight: 400;
  color: #4a4a4a;
  margin-bottom: 4px;
}

.fsd-block-info {
  font-size: calc(var(--font-scale, 1) * 18px);
  font-weight: 700;
  color: #4a4a4a;
  margin-bottom: 8px;
}

.fsd-status-tag {
  display: inline-block;
  padding: 0 8px;
  border-radius: 16px;
  border: 1px solid;
  margin-top: 4px;
  margin-bottom: 4px;
  text-align: center;
}

.fsd-status-tag.ontime {
  color: #007e7d;
  border-color: #007e7d;
  background: #ffffff;
}

.fsd-status-tag.delay {
  color: #cf8100;
  border-color: #cf8100;
  background: #ffffff;
}

.fsd-block-center {
  align-items: center;
  justify-content: center;
  min-width: 300px;
  max-width: 340px;
  gap: 16px;
}

.fsd-schedule-label {
  font-size: calc(var(--font-scale, 1) * 12px);
  color: #4a4a4a;
  font-weight: 400;
}

.fsd-schedule-time {
  font-size: calc(var(--font-scale, 1) * 14px);
  font-weight: 600;
  color: #4a4a4a;
}

.fsd-schedule-date {
  font-size: calc(var(--font-scale, 1) * 14px);
  font-weight: 400;
  color: #4a4a4a;
}

.fsd-actual-time {
  font-size: calc(var(--font-scale, 1) * 22px);
  font-weight: 900;
  color: #000000;
}

.fsd-actual-date {
  font-size: calc(var(--font-scale, 1) * 14px);
  font-weight: 900;
  color: #000000;
}

.fsd-routebar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 4px;
}

.fsd-routebar-icon {
  width: 24px;
  height: 24px;
}

.fsd-routebar-bar {
  width: 424px;
  height: 6px;
  border-radius: 3px;
}

.fsd-duration {
  font-size: calc(var(--font-scale, 1) * 14px);
  font-weight: 700;
  color: #4a4a4a;
  text-align: center;
  margin-bottom: 8px;
}

.fsd-schedule-block {
  width: 300px;
}

.fsd-second-row {
  padding: 0 12px;
}

/* ==========================================================================
   6. OTP / WEATHER CARD
   ========================================================================== */

.otp-weather-card {
  border-radius: 8px;
  background: inherit;
  padding: 0;
  margin: 0;
}

.otp-section,
.weather-section {
  border-radius: 8px;
  background: #ffffff;
  box-sizing: border-box;
  min-width: 0;
  padding: 16px 24px;
}

.weather-section {
  align-items: normal;
}

.otp-placeholder {
  padding: 24px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.otp-punctuality-row {
  width: 100%;
}

.performance-bar-wrap {
  width: 100%;
  margin-bottom: 16px;
  position: relative;
}

.performance-bar-bg {
  width: 100%;
  height: 8px;
  background: #f2f2f2;
  border-radius: 4px;
  position: relative;
  margin-bottom: 2px;
  overflow: hidden;
}

.performance-bar-fill {
  height: 8px;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 0;
  transition: width 0.3s ease;
}

.weather-icon {
  width: 85px;
  height: 85px;
}

/* ==========================================================================
   7. AIRCRAFT / SEATING / AMENITIES CARD (asa-)
   ========================================================================== */

.asa-main-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-radius: 8px;
}

.asa-placeholder {
  padding: 24px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.asa-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
}

.asa-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 8px;
  border: 1px solid #d8d8d8;
  padding: 16px;
  min-width: 0;
  background: #ffffff;
  box-sizing: border-box;
  flex: 1;
}

.asa-title {
  font-weight: 700;
  color: #4a4a4a;
  margin-bottom: 0;
}

.asa-info-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row wrap;
  gap: 8px;
}

.asa-info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  max-width: 120px;
}

.asa-icon {
  height: 84px;
  width: 120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.asa-info-text {
  color: #4a4a4a;
  text-align: center;
  max-width: 100%;
}

.asa-amenities-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.asa-amenity-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.asa-amenity-text-title {
  font-size: calc(var(--font-scale, 1) * 14px);
  color: #4a4a4a;
  text-align: left;
}

.asa-amenity-text {
  font-size: calc(var(--font-scale, 1) * 12px);
  color: #4a4a4a;
  text-align: left;
}

.asa-amenities {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ==========================================================================
   8. SHARE CTA
   ========================================================================== */

.share-cta-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.share-cta-btn-inner {
  display: flex;
  align-items: center;
  gap: 4px;
}

.share-cta-icon {
  width: 18px;
  height: 18px;
}

.share-cta-text {
  color: #008cff;
  font-weight: 600;
  font-size: calc(var(--font-scale, 1) * 14px);
}

.share-overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.share-overlay-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.share-overlay-title {
  margin-bottom: 0;
}

.share-link-row {
  border: 1px solid #d8d8d8;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.share-link-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: calc(var(--font-scale, 1) * 14px);
}

.share-copy-btn {
  background: none;
  border: none;
  color: #008cff;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.share-social-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.share-social-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.share-social-icon.whatsapp {
  background-image: url("https://img.icons8.com/color/48/000000/whatsapp--v1.png");
}

.share-social-icon.facebook {
  background-image: url("https://img.icons8.com/color/48/000000/facebook-new.png");
}

.share-social-icon.gmail {
  background-image: url("https://img.icons8.com/color/48/000000/gmail-new.png");
}

/* ==========================================================================
   9. FLIGHT STATUS LINKS CAROUSEL (fsl-)
   ========================================================================== */

.fsl-wrapper {
  margin-top: 20px;
}

.fsl-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  overflow: hidden;
}

.fsl-card-inner {
  position: relative;
  padding: 20px 48px 32px;
}

.fsl-carousel-btn-prev,
.fsl-carousel-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 24px;
  line-height: 1;
  border: none;
  border-radius: 50%;
  background: #f5f5f5;
  color: #5f6368;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fsl-carousel-btn-prev:hover:not(:disabled),
.fsl-carousel-btn-next:hover:not(:disabled) {
  background: #e8e8e8;
  color: #1a73e8;
}

.fsl-carousel-btn-prev:disabled,
.fsl-carousel-btn-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.fsl-carousel-btn-prev {
  left: 8px;
}

.fsl-carousel-btn-next {
  right: 8px;
}

.fsl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(6, auto);
  gap: 6px 24px;
}

.fsl-grid-item {
  min-height: 28px;
}

.fsl-link {
  display: block;
  font-size: 14px;
  color: #1a73e8;
  text-decoration: none;
  padding: 4px 8px;
  margin: -4px -8px;
  border-radius: 4px;
}

.fsl-link:hover {
  background: rgba(26, 115, 232, 0.08);
  text-decoration: none;
}

.fsl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.fsl-dot,
.fsl-dot-active {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: #dadce0;
}

.fsl-dot-active {
  background: #1a73e8;
}