/* Dashboard kaarten volledig klikbaar zonder onderstreping */
.dashboard-card-link {
  text-decoration: none !important;
  color: inherit;
  display: block;
  height: 100%;
  transition: all 0.3s ease;
  /* Schakel iOS link preview uit bij lange druk */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  /* Zorg ervoor dat de link ook afgerond is om vierkant vak achter de card te voorkomen */
  border-radius: 1rem;
  overflow: hidden;
}

.dashboard-card-link:hover,
.dashboard-card-link:focus,
.dashboard-card-link:active,
.dashboard-card-link:visited {
  text-decoration: none !important;
  color: inherit;
}

/* Dashboard kaarten styling */
.dashboard-card {
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.62) !important;
}

.dashboard-card .card-body{
  justify-content: space-between;
  padding: 1.15rem 1.15rem 1rem !important;
  gap: 0.9rem;
}

.dashboard-card .card-body > .d-flex:first-child{
  align-items: center !important;
  justify-content: center;
  text-align: center !important;
  width: 100%;
  margin-bottom: 0.2rem !important;
}

.dashboard-card .card-body > .d-flex:first-child > div:last-child{
  text-align: center !important;
}

.dashboard-card .card-body > .d-flex:first-child .chronos-icon{
  margin-right: 0 !important;
  margin-bottom: 0.45rem !important;
}

/* Hover effect - kaart komt omhoog */
.dashboard-card-link:hover .dashboard-card,
.dashboard-card-link:focus .dashboard-card,
.dashboard-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16,24,40,.10) !important;
}

/* Actie element styling (vervangt de buttons) */
.dashboard-card-action {
  background: #274E8F; /* default fallback */
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 500;
  transition: transform .15s ease, background-color .15s ease;
  display: inline-block;
}

/* Lichtoranje variant voor Your Friends kaart */
.dashboard-card-orange {
  background: rgba(255, 245, 230, 0.64) !important;
  border: 1px solid #FFE0B3 !important;
}
.dashboard-card-orange .dashboard-card-action {
  background: #FFB84D !important;
  color: #3b2a1a !important;
}

/* Rode badge rechtsboven op de kaart */
.badge-pending {
  position: absolute;
  top: 6px;
  right: 10px;
  background: #dc3545;
  color: #fff;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1;
  padding: 4px 7px;
  font-weight: 700;
}

/* Palette varianten die matchen met de icon-kleuren */
.dashboard-card-action-primary { background: #0d6efd; }
.dashboard-card-action-success { background: #198754; }
.dashboard-card-action-info    { background: #0dcaf0; color: #052c65; }
.dashboard-card-action-warning { background: #ffc107; color: #343a40; }
.dashboard-card-action-danger  { background: #dc3545; color: #ffffff; }
/* Donkergrijze variant voor Account Instellingen */
.dashboard-card-action-dark { background: #343a40; color: #ffffff; }
/* Paars voor IPB Geboekt */
.dashboard-card-action-ipb { background: #6c2bd9; color: #ffffff; }
.dashboard-card-link:hover .dashboard-card-action-ipb { background: #5a22b6; }

.chronos-tile-note {
  font-size: 0.85rem;
  line-height: 1.2;
}

.dashboard-card-ipb {
  background: rgba(243, 238, 255, 0.64) !important;
  border: 1px solid #e1d4ff !important;
}
.text-ipb { color: #6c2bd9 !important; }

/* Hover effect voor actie elementen */
.dashboard-card-link:hover .dashboard-card-action { transform: scale(1.05); }
.dashboard-card-link:hover .dashboard-card-action-primary { background: #0b5ed7; }
.dashboard-card-link:hover .dashboard-card-action-success { background: #157347; }
.dashboard-card-link:hover .dashboard-card-action-info    { background: #31d2f2; }
.dashboard-card-link:hover .dashboard-card-action-warning { background: #ffcd39; }
.dashboard-card-link:hover .dashboard-card-action-danger  { background: #bb2d3b; }
.dashboard-card-link:hover .dashboard-card-action-dark { background: #2b2f32; }

/* Admin Panel Toggle Styling */
.admin-panel-toggle {
  cursor: pointer;
}

.admin-panel-content {
  display: none !important;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

body.fs-action-dashboard .page-container{
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.fs-action-dashboard .page-container > #flight-info-widget,
body.fs-action-dashboard .page-container > #fs-next-flight-trigger,
body.fs-action-dashboard .page-container > .row.g-4.mb-5{
  width: min(100%, 1120px);
  margin-left: auto;
  margin-right: auto;
}

body.fs-action-dashboard .page-container > .row.g-4.mb-5{
  justify-content: center;
}

.fs-cabin-sync-head{
  gap: 0.7rem;
  padding-top: 0.05rem;
}

.fs-cabin-sync-icon{
  margin-bottom: 0 !important;
  flex: 0 0 auto;
}

.fs-cabin-sync-copy{
  text-align: left;
}

.fs-cabin-sync-meta{
  line-height: 1.2;
  margin-top: 0.15rem;
}

.fs-cabin-sync-stamp{
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.fs-cabin-sync-foot{
  margin-top: 0.45rem;
}

.fs-cabin-sync-tile .dashboard-card-action{
  padding: 0.72rem 1.05rem;
}

.fs-cabin-sync-link.is-busy {
  pointer-events: none;
}

.fs-cabin-sync-tile.is-busy {
  opacity: 0.82;
  filter: saturate(0.82) brightness(0.985);
  transform: translateY(1px) scale(0.985);
}

.fs-cabin-sync-tile.is-busy .dashboard-card-action {
  opacity: 0.88;
  transform: none !important;
}

.fs-cabin-sync-tile.is-busy .fs-cabin-sync-meta,
.fs-cabin-sync-tile.is-busy .fs-cabin-sync-stamp {
  opacity: 0.9;
}

@media (max-width: 1200px) {
  .dashboard-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .dashboard-grid { 
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .dashboard-card-action {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}


/* next-flight-body verwijderd */

/* Flight Info Widget */
.flight-info-card {
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.62) 0%, rgba(255, 255, 255, 0.62) 100%) !important;
  border-left: 5px solid #00C851 !important;
  transition: all 0.3s ease;
}

/* ─────────────────────────────────────────────────────────────
   iOS-like next flight trigger + modal weather strip
   ───────────────────────────────────────────────────────────── */
.fs-next-flight-trigger,
#fs-next-flight-trigger{
  display: block;
}

.fs-dash-flightcard{
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.62) 0%, rgba(251,252,255,0.62) 100%) !important;
  border: 2px solid rgba(39,78,143,0.14);
  /* Reserve space to prevent layout shift while loading */
  min-height: 240px;
}
.fs-dash-flightcard .card-body {
  background: transparent !important;
}

@media (min-width: 992px) {
  #fs-next-flight-trigger{
    display: flex;
    justify-content: center;
  }

  .fs-dash-flightcard{
    width: fit-content;
    max-width: min(100%, 1120px);
  }

  .fs-dash-flightcard--compact {
    width: fit-content;
    max-width: min(100%, 980px);
  }
}

/* Skeleton helpers (dashboard next-flight placeholder) */
.fs-dash-flightcard--skeleton .fs-dash-flight-ico{
  opacity: 0.55;
}
.fs-skel-line{
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(39,78,143,0.10) 0%,
    rgba(39,78,143,0.18) 35%,
    rgba(39,78,143,0.10) 70%,
    rgba(39,78,143,0.10) 100%);
  background-size: 220% 100%;
  animation: fs-skel-shimmer 1.2s ease-in-out infinite;
}
.fs-dash-flightcard--skeleton .fs-dash-cell{
  background: rgba(39,78,143,0.08) !important;
}
@keyframes fs-skel-shimmer{
  0%{ background-position: 0% 0; }
  100%{ background-position: 100% 0; }
}
.fs-dash-flight-ico{
  width: 46px; height: 46px;
  border-radius: 14px;
  display:flex;align-items:center;justify-content:center;
  background: linear-gradient(135deg, rgba(39,78,143,0.18) 0%, rgba(39,78,143,0.07) 100%);
  color:#274E8F;
  flex-shrink:0;
}
.fs-dash-flight-ico i{ font-size: 20px; }
.fs-dash-flight-kicker{ font-weight: 800; color:#274E8F; }
.fs-dash-flight-dest{ font-size: 1.15rem; font-weight: 800; color:#111827; line-height:1.15; }
.fs-dash-trip-pager{
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 1px;
}
.fs-dash-trip-counter{
  font-size: 13px;
  font-weight: 800;
  color: #6b7280;
  line-height: 1;
}
.fs-dash-trip-nav{
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #274E8F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.fs-dash-trip-nav:hover:not([disabled]){
  background: rgba(39,78,143,0.10);
}
.fs-dash-trip-nav[disabled]{
  opacity: 0.35;
  cursor: default;
}

.fs-dash-timer{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(39,78,143,0.14);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  background: linear-gradient(135deg, rgba(39,78,143,0.08) 0%, rgba(255,255,255,0.78) 100%);
}
.fs-dash-timer--checkin{
  border-color: rgba(39,78,143,0.18);
  background: linear-gradient(135deg, rgba(39,78,143,0.11) 0%, rgba(255,255,255,0.82) 100%);
}
.fs-dash-timer--layover{
  border-color: rgba(8,145,178,0.22);
  background: linear-gradient(135deg, rgba(13,148,136,0.12) 0%, rgba(240,253,250,0.92) 100%);
}
.fs-dash-timer--transit{
  border-color: rgba(161,98,7,0.18);
  background: linear-gradient(135deg, rgba(245,158,11,0.12) 0%, rgba(255,251,235,0.92) 100%);
}
.fs-dash-timer-copy{
  min-width: 0;
}
.fs-dash-timer-label{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:#274E8F;
}
.fs-dash-timer-meta{
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.35;
  color:#5b6471;
}
.fs-dash-timer-value{
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 900;
  color:#0f172a;
  white-space: nowrap;
}

.fs-dash-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}
.fs-dash-grid--expandable{
  cursor: pointer;
  outline: none;
}
.fs-dash-grid--expandable .fs-dash-cell{
  transition: background-color 140ms ease, border-color 140ms ease, transform 140ms ease;
}
.fs-dash-grid--expandable:hover .fs-dash-cell,
.fs-dash-grid--expandable:focus-visible .fs-dash-cell{
  background: rgba(39,78,143,0.15) !important;
  border-color: rgba(39,78,143,0.16);
}
@media (min-width: 768px){
  /* Desktop: ALLES (Vluchtnr t/m Valuta) op 1 regel */
  .fs-dash-grid{
    /* Override the base 2-col 1fr grid completely */
    display: inline-grid;
    grid-template-columns: unset;
    grid-template-rows: unset;
    grid-auto-flow: column;
    grid-auto-columns: max-content; /* elke tile = breedte van content */
    align-items: stretch;
    gap: 10px;
    justify-content: start;
    max-width: 100%;
    overflow-x: auto; /* never wrap to a 2nd line; scroll if needed */
  }
}
.fs-dash-cell{
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(39,78,143,0.12) !important;
  border: 1px solid rgba(39,78,143,0.10);
  min-width: 0; /* allow shrinking inside flex row */
}
.fs-dash-cell--vluchtnr,
.fs-dash-cell--aanmeldtijd,
.fs-dash-cell--omloop,
.fs-dash-cell--lokaletijd,
.fs-dash-cell--valuta{
  white-space: nowrap;
}
.fs-dash-label{ font-size: 11px; color:#6c757d; font-weight: 800; line-height: 1.1; }
.fs-dash-value{ font-size: 14px; font-weight: 800; color:#111827; line-height: 1.15; }
.fs-dash-value-row{
  display:flex;
  align-items:center;
  gap: 6px;
  min-width: 0;
}
.fs-dash-value-row .fs-dash-value{
  min-width: 0;
}
.fs-dash-expand-icon{
  font-size: 11px;
  color:#8a919b;
  flex: 0 0 auto;
}
.fs-dash-incoming{
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(39,78,143,0.10);
}
.fs-dash-incoming-title{
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  color:#111827;
}
.fs-dash-incoming-status{
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.35;
  color:#5b6471;
}

.fs-dash-today{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
}
.fs-dash-today-title{ font-weight: 800; color:#274E8F; margin-bottom: 6px; }
.fs-dash-today-grid{
  display:flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.fs-dash-today-grid > div{
  display:flex;
  gap: 8px;
  align-items: baseline;
}

.fs-dash-split{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}
@media (min-width: 992px){
  .fs-dash-split{ grid-template-columns: 1fr 1fr; }
}
.fs-dash-split--hotel{
  grid-template-columns: 92px max-content;
  width: fit-content;
  max-width: 100%;
}
.fs-dash-split--hotel-only{
  display: flex;
  width: fit-content;
  max-width: 100%;
}
.fs-dash-subcard{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255, 255, 255, 0.62) !important;
  padding: 12px;
}
.fs-dash-subhead{
  font-weight: 800;
  color:#111827;
  margin-bottom: 6px;
}
.fs-hotel-preview--compact{
  width: 92px;
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.78) !important;
}
.fs-hotel-preview--compact:focus-visible{
  outline: 2px solid rgba(39, 78, 143, 0.34);
  outline-offset: 2px;
}
.fs-hotel-preview-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(39, 78, 143, 0.10);
  color: #274E8F;
  font-size: 1.25rem;
}
.fs-hotel-preview-map{
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(39, 78, 143, 0.16);
  background: rgba(39, 78, 143, 0.08);
  color: #274E8F;
  text-decoration: none;
}
.fs-hotel-preview-map:hover{
  background: rgba(39, 78, 143, 0.14);
  color: #1D3F72;
}

/* Hotel modal */
#fsHotelModal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#fsHotelModal .modal-header > div:last-child {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fs-hotel-modal-head{
  padding: 14px 14px 12px;
  border-radius: 14px;
  border: 1px solid rgba(39,78,143,0.12);
  background: linear-gradient(135deg, rgba(39,78,143,0.06) 0%, rgba(255, 255, 255, 0.62) 60%) !important;
}
.fs-hotel-modal-title{
  font-weight: 900;
  font-size: 1.05rem;
  color:#111827;
}
.fs-hotel-sections{
  display: grid;
  gap: 12px;
}
.fs-hotel-section{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255, 255, 255, 0.62) !important;
  padding: 12px 14px;
}
.fs-hotel-section-title{
  font-weight: 900;
  color:#274E8F;
  margin-bottom: 6px;
}
.fs-hotel-section-body{
  color:#111827;
  line-height: 1.45;
}

.fs-flightmodal-hero{
  padding: 14px 14px 10px;
  border-radius: 14px;
  border: 2px solid rgba(39,78,143,0.12);
  background: linear-gradient(135deg, rgba(39,78,143,0.07) 0%, rgba(255, 255, 255, 0.62) 60%) !important;
}
.fs-flightmodal-hero-title{ font-weight: 800; color:#274E8F; }
.fs-flightmodal-hero-dest{ font-size: 1.15rem; font-weight: 800; color:#111827; margin-top: 2px; }
.fs-flightmodal-hero-sub{ margin-top: 2px; }

.fs-weather-scroll{
  display:flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  width: max-content;
  max-width: 100%;
}
.fs-weather-day{
  width: 62px;
  flex: 0 0 auto;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255, 255, 255, 0.62) !important;
  padding: 8px 6px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.fs-weather-day:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(16,24,40,.08);
}
.fs-weather-day:active{
  transform: translateY(0px);
}

/* Hourly weather modal */
.fs-weather-hours-title{
  font-weight: 900;
  color:#274E8F;
  margin-bottom: 10px;
  /* Do not break words mid-word */
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.fs-weather-hours-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.fs-weather-hour{
  border-radius: 14px;
  border: 1px solid rgba(17,24,39,0.08);
  background: rgba(255, 255, 255, 0.62);
  padding: 10px 8px;
  text-align: center;
}
.fs-weather-hour-time{
  font-size: 0.85rem;
  font-weight: 900;
  color:#6c757d;
  /* Do not break words mid-word */
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.fs-weather-hour-icon{
  font-size: 20px;
  margin-top: 6px;
}
.fs-weather-hour-pop{
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  color:#111827;
}
.fs-weather-hour-label{
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 900;
  color:#111827;
  line-height: 1.15;
  white-space: normal;
  /* No mid-word breaks */
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.fs-weather-hour-pop{
  white-space: normal;
  /* No mid-word breaks */
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.fs-weather-hour.w-sun .fs-weather-hour-icon{ color: #f0b400; }
.fs-weather-hour.w-cloud .fs-weather-hour-icon{ color: #6c757d; }
.fs-weather-hour.w-fog .fs-weather-hour-icon{ color: #6c757d; }
.fs-weather-hour.w-rain .fs-weather-hour-icon{ color: rgba(13,110,253,0.65); }
.fs-weather-hour.w-sleet .fs-weather-hour-icon{ color: rgba(13,202,240,0.8); }
.fs-weather-hour.w-snow .fs-weather-hour-icon{ color: rgba(108,117,125,0.55); }
.fs-weather-hour.w-thunder .fs-weather-hour-icon{ color: rgba(13,110,253,0.9); }
.fs-weather-weekday{ font-size: 10px; font-weight: 800; color:#6c757d; }
.fs-weather-date{ font-size: 11px; font-weight: 600; color:#6c757d; margin-top: -2px; }
.fs-weather-icon{ font-size: 18px; margin-top: 6px; }
.fs-weather-temp{ font-size: 14px; font-weight: 800; margin-top: 2px; }

.fs-weather-day.w-sun .fs-weather-icon{ color: #f0b400; }
.fs-weather-day.w-cloud .fs-weather-icon{ color: #6c757d; }
.fs-weather-day.w-fog .fs-weather-icon{ color: #6c757d; }
.fs-weather-day.w-rain .fs-weather-icon{ color: rgba(13,110,253,0.65); }
.fs-weather-day.w-sleet .fs-weather-icon{ color: rgba(13,202,240,0.8); }
.fs-weather-day.w-snow .fs-weather-icon{ color: rgba(108,117,125,0.55); }
.fs-weather-day.w-thunder .fs-weather-icon{ color: rgba(13,110,253,0.9); }

/* ─────────────────────────────────────────────────────────────
   Smartphone layout (match iOS compact feel):
   - Keep background visible (not full-bleed)
   - Show details stacked (no “hokjes”)
   Desktop/tablet remain unchanged.
   ───────────────────────────────────────────────────────────── */
@media (max-width: 576px){
  /* Keep some background visible around the card */
  #fs-next-flight-trigger .fs-dash-flightcard{
    width: min(86vw, 340px);
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    overflow: hidden; /* prevent any child from bleeding outside on small screens */
  }
  #fs-next-flight-trigger .fs-dash-flightcard .card-body{
    padding: 14px !important;
  }

  .fs-dash-flight-ico{
    width: 40px; height: 40px;
    border-radius: 14px;
  }
  .fs-dash-flight-ico i{ font-size: 16px; }
  .fs-dash-flight-kicker{ font-size: 0.9rem; line-height: 1.15; }
  .fs-dash-flight-dest{ font-size: 1.05rem; line-height: 1.18; }
  .fs-dash-trip-counter{ font-size: 12px; }
  .fs-dash-trip-nav{ width: 22px; height: 22px; }
  .fs-dash-timer{
    padding: 12px 13px;
    gap: 12px;
  }
  .fs-dash-timer-value{
    font-size: 1.2rem;
  }
  .fs-dash-timer-meta{
    font-size: 11px;
  }

  /* Replace grid “tiles” with a simple stacked list like iOS */
  .fs-dash-grid{
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px !important;
  }
  .fs-dash-cell{
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
  }
  .fs-dash-label{
    font-size: 12px;
    font-weight: 700;
    color:#6c757d;
    white-space: nowrap;
  }
  .fs-dash-value{
    font-size: 13px;
    font-weight: 800;
    color:#111827;
    text-align: right;
    overflow-wrap: anywhere;
  }

  /* “Je vlucht vandaag” section: also stacked, no big box */
  .fs-dash-today{
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    margin-top: 12px !important;
  }
  .fs-dash-today-title{
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  .fs-dash-today-grid{
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .fs-dash-today-grid > div{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  .fs-dash-split{ gap: 10px; margin-top: 12px !important; }
  .fs-dash-subcard{
    padding: 12px;
    border-radius: 14px;
    max-width: 100%;
    overflow: hidden; /* keep long hotel strings inside */
    box-sizing: border-box;
  }
  .fs-dash-subhead{ font-size: 0.98rem; margin-bottom: 6px; }

  /* Weather should stay inside the card; tiles can scroll horizontally */
  .fs-weather-strip{ max-width: 100%; overflow-x: auto; overflow-y: hidden; }
  .fs-weather-scroll{ gap: 10px; max-width: 100%; }
  .fs-weather-day{ width: 56px; padding: 7px 6px; }
  .fs-weather-weekday{ font-size: 9px; }
  .fs-weather-date{ font-size: 10px; }
  .fs-weather-icon{ font-size: 16px; }
  .fs-weather-temp{ font-size: 13px; }
}

.flight-info-card.status-ontime {
  border-left-color: #00C851 !important;
}

.flight-info-card.status-delayed {
  border-left-color: #FFA500 !important;
}

.flight-info-card.status-cancelled {
  border-left-color: #dc3545 !important;
}

.flight-info-card.status-departed {
  border-left-color: #6c757d !important;
  opacity: 0.85;
}

.flight-icon {
  color: #274E8F;
}

.flight-title {
  color: #274E8F;
  font-weight: 600;
  margin: 0;
}

.flight-details {
  margin-top: 0.75rem;
}

.detail-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.detail-label {
  font-weight: 600;
  color: #6c757d;
  min-width: 120px;
  font-size: 0.95rem;
}

.detail-value {
  color: #212529;
  font-size: 1.1rem;
  font-weight: 500;
}

.gate-value {
  background: #FFD700 !important;
  color: #000 !important;
  font-size: 1.1rem;
  font-weight: 700 !important;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid #DAA520;
}

.status-badges {
  margin-top: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .flight-icon {
    font-size: 2rem !important;
  }
  
  .flight-title {
    font-size: 1.25rem;
  }
  
  .detail-label {
    min-width: 100px;
    font-size: 0.9rem;
  }
  
  .detail-value {
    font-size: 1rem;
  }
  
  .gate-value {
    font-size: 1.1rem;
  }
}
