/* TransomEcho V2 - clean aviation dark theme (mobile-first) */
:root{
  --bg:#f5f7fb;
  --panel:#ffffff;
  --panel2:#f2f6ff;
  --stroke:rgba(15,23,42,.12);
  --text:#0b1220;
  --muted:rgba(11,18,32,.72);
  --muted2:rgba(11,18,32,.58);
  --accent:#14b8a6;
  --accent2:#2563eb;
  --danger:#e11d48;
  --shadow: 0 10px 30px rgba(2,6,23,.10);
  --shadow2: 0 6px 18px rgba(2,6,23,.08);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(37,99,235,.14), transparent 60%),
    radial-gradient(820px 520px at 85% 10%, rgba(20,184,166,.14), transparent 55%),
    linear-gradient(180deg, #f7f9ff, #f5f7fb 35%, #f3f6ff);
  color:var(--text);
}

.app{max-width:1100px; margin:0 auto; padding:18px 14px 26px}
.header{
  display:flex; gap:14px; align-items:flex-end; justify-content:space-between;
  padding:14px 14px 18px;
}
.brand{display:flex; gap:12px; align-items:center}
.logo{
  width:50px; height:50px; border-radius:14px;
  background: linear-gradient(135deg, rgba(20,184,166,.14), rgba(37,99,235,.12));
  border:1px solid var(--stroke);
  display:grid; place-items:center;
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.logo img{width:100%; height:100%; object-fit:contain; padding:6px}
.logo svg{width:34px; height:34px}
.title{font-weight:800; letter-spacing:.2px; font-size:20px; line-height:1}
.v2{color:var(--accent)}
.subtitle{color:var(--muted); font-size:12px; margin-top:6px}

.headerActions{
  display:flex; gap:10px; align-items:flex-end; flex-wrap:wrap; justify-content:flex-end;
}
.selectWrap{display:flex; flex-direction:column; gap:6px}
.selectWrap label{font-size:12px; color:var(--muted2)}
select{
  appearance:none;
  background: rgba(2,6,23,.04);
  border: 1px solid var(--stroke);
  color: var(--text);
  padding:10px 12px;
  border-radius: 12px;
  min-width: 140px;
  outline:none;
}
select:focus{border-color: rgba(20,184,166,.55); box-shadow: 0 0 0 3px rgba(20,184,166,.14)}

.main{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,.98));
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card.secondary{
  padding:16px 16px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(250,252,255,1));
}
.cardTop{
  display:flex; justify-content:space-between; align-items:flex-start; gap:12px;
  padding:16px 16px 10px;
  border-bottom:1px solid var(--stroke);
}
.cardTitle{font-weight:800; font-size:16px}
.cardHint{color:var(--muted); font-size:12px; margin-top:6px; max-width: 58ch}

.status{
  display:flex; align-items:center; gap:8px;
  padding:8px 10px;
  border:1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(2,6,23,.04);
  color: var(--muted);
  font-size: 12px;
  white-space:nowrap;
}
.status .dot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(233,238,252,.25);
  box-shadow: 0 0 0 4px rgba(233,238,252,.07);
}
.status.playing{color: rgba(20,184,166,.95); border-color: rgba(20,184,166,.25)}
.status.playing .dot{background: var(--accent); box-shadow: 0 0 0 4px rgba(20,184,166,.18)}
.status.error{color: rgba(251,113,133,.95); border-color: rgba(251,113,133,.25)}
.status.error .dot{background: var(--danger); box-shadow: 0 0 0 4px rgba(251,113,133,.18)}

.tabs{
  display:flex;
  gap:8px;
  padding:12px 12px 12px;
  overflow:auto;
  scroll-snap-type:x mandatory;
}
.tab{
  flex: 0 0 auto;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid var(--stroke);
  background: rgba(2,6,23,.04);
  color: var(--muted);
  cursor:pointer;
  font-weight:600;
  font-size: 12px;
  scroll-snap-align:start;
  user-select:none;
}
.tab[aria-selected="true"]{
  background: linear-gradient(135deg, rgba(20,184,166,.18), rgba(37,99,235,.12));
  border-color: rgba(20,184,166,.35);
  color: var(--text);
}

.panel{padding:14px 16px 16px}
.panelRow{
  display:flex; gap:12px; justify-content:space-between; align-items:center; flex-wrap:wrap;
}
.panelLeft{min-width:220px}
.nowLabel{color:var(--muted2); font-size:12px}
.nowValue{font-weight:800; margin-top:4px}
.small{color:var(--muted); font-size:12px; margin-top:4px}
.muted{color:var(--muted2)}
.panelRight{display:flex; gap:10px; align-items:center; flex-wrap:wrap}

.btn{
  border:1px solid var(--stroke);
  background: rgba(2,6,23,.04);
  color: var(--text);
  padding:10px 14px;
  border-radius: 12px;
  font-weight:700;
  cursor:pointer;
  outline:none;
}
.btn:hover{background: rgba(2,6,23,.06)}
.btn:active{transform: translateY(1px)}
.btn.primary{
  border-color: rgba(20,184,166,.30);
  background: linear-gradient(135deg, rgba(20,184,166,.25), rgba(37,99,235,.18));
}
.btn.ghost{background: rgba(255,255,255,.0);}

.progressRow{
  display:flex; align-items:center; gap:10px;
  margin-top:14px;
}
.time{font-variant-numeric: tabular-nums; color: var(--muted2); font-size:12px; width:42px; text-align:center}
input[type="range"]{width:100%; accent-color: var(--accent);}

.checklist{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.checklist li{margin:8px 0}

.countdownOverlay{
  position:fixed; inset:0;
  background: rgba(2,6,23,.22);
  display:none;
  align-items:center; justify-content:center;
  padding:20px;
}
.countdownOverlay.show{display:flex}
.countdownCard{
  width:min(420px, 92vw);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,247,251,.98));
  border:1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding:18px 18px 16px;
  text-align:center;
}
.countdownTitle{color:var(--muted); font-size:13px}
.countdownNumber{
  font-weight:900;
  font-size: 64px;
  letter-spacing: -1px;
  margin: 6px 0 2px;
}
.countdownSub{color:var(--muted2); font-size:12px; margin-bottom: 12px}

@media (min-width: 900px){
  .main{grid-template-columns: 1.3fr .7fr; align-items:start}
  .header{padding:18px 4px 20px}
}


/* ---------- V2 Layout Enhancements (Mobile-first app feel) ---------- */
.app{
  padding: calc(14px + env(safe-area-inset-top)) 14px calc(26px + env(safe-area-inset-bottom));
}

.header{
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(245,247,251,.92), rgba(245,247,251,.68));
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  margin-bottom: 12px;
}

.headerActions .btn.ghost{
  padding:10px 12px;
}

.tabs{
  padding: 12px 12px 10px;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar{display:none}

.tab{
  padding: 11px 14px;
  font-size: 12.5px;
  min-height: 42px;
}

.panel{
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}

.desktopControls{
  display:flex;
}

/* Mobile sticky player */
.mobilePlayer{
  display:none;
  position: sticky;
  bottom: 0;
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(245,247,251,.92));
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
  gap: 12px;
  align-items:center;
  justify-content: space-between;
}

.mpLeft{min-width: 0}
.mpTitle{
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mpSub{
  margin-top: 2px;
  font-size: 11.5px;
  color: rgba(233,238,252,.70);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mpBtns{display:flex; gap:10px; align-items:center}
.iconBtn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(2,6,23,.04);
  color: var(--text);
  font-weight: 900;
  cursor:pointer;
}
.iconBtn.primary{
  border-color: rgba(20,184,166,.30);
  background: linear-gradient(135deg, rgba(20,184,166,.25), rgba(37,99,235,.18));
}
.iconBtn.danger{
  border-color: rgba(251,113,133,.28);
  background: rgba(251,113,133,.12);
}

.toast{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 50;
  min-width: min(520px, 92vw);
  max-width: 92vw;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
  color: rgba(233,238,252,.92);
  font-size: 13px;
  display:none;
}
.toast.show{display:block}
.toast.error{border-color: rgba(251,113,133,.25); color: rgba(251,113,133,.95)}

/* Small screens: simplify header + use sticky player bar */
@media (max-width: 560px){
  .header{align-items: center}
  .subtitle{display:none}
  .logo{
  width:50px; height:50px; border-radius:14px;
  background: linear-gradient(135deg, rgba(20,184,166,.14), rgba(37,99,235,.12));
  border:1px solid var(--stroke);
  display:grid; place-items:center;
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.logo img{width:100%; height:100%; object-fit:contain; padding:6px}
  .title{font-size:18px}
  select{min-width: 120px; padding:10px 10px}
  .desktopControls{display:none}
  .mobilePlayer{display:flex}
  .time{width:40px}
}

/* Destination search */
#destSearch{
  background: rgba(2,6,23,.04);
  border: 1px solid var(--stroke);
  color: var(--text);
  padding:10px 12px;
  border-radius: 12px;
  outline:none;
  min-width: 140px;
}
#destSearch:focus{border-color: rgba(37,99,235,.55); box-shadow: 0 0 0 3px rgba(37,99,235,.14)}
.hintTiny{font-size:11px; margin-top:6px}
@media (max-width: 560px){
  #destSearch{min-width:120px; padding:10px 10px}
}

/* Next suggestion (auto flow helper) */
.nextSuggestion{
  display:none;
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(20,184,166,.10));
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.nextSuggestion.show{display:flex}
.nsLeft{min-width:0}
.nsLabel{font-size:11.5px; color: rgba(233,238,252,.70)}
.nsValue{
  margin-top:3px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nsRight{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
@media (max-width: 560px){
  .nextSuggestion{flex-direction: column; align-items: stretch}
  .nsRight{justify-content: stretch}
  .nsRight .btn{width:100%}
}

/* Suggested next tab highlight */
.tab.suggested{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 3px rgba(37,99,235,.16);
  color: rgba(233,238,252,.95);
}

.btn.danger{
  border-color: rgba(225,29,72,.28);
  background: rgba(225,29,72,.10);
  color: rgba(225,29,72,.95);
}

/* --- Alignment improvements (mobile + web) --- */
.header{
  align-items: center;
}
.headerActions{
  display: grid;
  grid-auto-flow: row;
  gap: 12px;
  align-items: end;
  justify-items: stretch;
  width: min(520px, 100%);
}
.selectWrap{width: 100%;}
.selectWrap .row2{
  display:grid;
  grid-template-columns: 170px 1fr;
  gap: 10px;
  align-items: end;
}
.selectWrap .field{
  display:flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
select, #destSearch{width: 100%; min-width: 0}

@media (max-width: 720px){
  .header{flex-direction: column; align-items: stretch; gap: 12px}
  .headerActions{width: 100%}
  .selectWrap .row2{grid-template-columns: 1fr}
}

@media (min-width: 900px){
  .header{flex-direction: row; align-items: flex-end}
  .headerActions{
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    justify-content: end;
    width: auto;
  }
  .selectWrap .row2{grid-template-columns: 180px 260px}
}

/* ===== Mobile-first improvements (override) ===== */
@media (max-width: 720px){
  .app{padding-left: 12px; padding-right: 12px;}
  .appbar{top: 8px; padding: 10px 10px;}
  .brandLogo{width:48px; height:48px}
  .brandLogo img{width:48px; height:48px}
  .brandTitle{font-size: 18px}
  .controls{padding: 12px 12px 10px}
  .panel{padding: 12px 12px 14px}
  .now{min-width: 0}
  .nowValue{font-size: 14px}
  .tabs{padding: 10px 10px 8px}
  .tab{min-height: 40px; padding: 10px 12px; font-size: 12.5px}
  .seekRow{gap: 8px}
  .time{width: 42px}

  /* Side card off on mobile for clean ops layout */
  .sideCard{display:none}

  /* Mobile player fixed bottom */
  .mobilePlayer{
    display:flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 85;
  }
  /* Give space so content doesn't hide behind fixed player */
  .playerCard{padding-bottom: 90px}
}

/* Ensure countdown overlay always visible */
.overlay{z-index: 120;}
.overlay.show{display:flex;}

/* ===== Mobile-first selector layout ===== */
.selectorCard{
  width: min(720px, 100%);
  margin: 14px auto 14px;
  text-align: left;
}
.selectorCard .controlsGrid{
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 720px){
  .selectorCard{
    margin: 12px auto 10px;
  }
  .selectorCard .controlsGrid{
    grid-template-columns: 1fr;
  }
  .selectorCard select{
    width: 100%;
    font-size: 16px; /* iOS no-zoom */
    height: 48px;
  }
}

/* Put selector in visual center of page */
.main{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
@media (max-width: 720px){
  .main{
    gap: 10px;
  }
  .tabs{
    margin-top: 6px;
  }
}

/* Make the key info block cleaner */
#filePathLabel{
  opacity: .65;
}

@media (max-width: 720px){
  .tabs{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .tab{
    width: 100%;
    justify-content:center;
    border-radius: 14px;
    min-height: 46px;
    font-size: 13.5px;
  }
  .orderRemark{
    width: 100%;
    text-align:center;
  }
}


/* ===== FORCE center & widen Airline/Destination selector ===== */
.selectorCard{
  max-width: 900px;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 16px;
  padding-right: 16px;
}

.selectorCard .controlsGrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 720px){
  .selectorCard{
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
  .selectorCard .controlsGrid{
    grid-template-columns: 1fr;
  }
  .selectorCard select{
    width: 100%;
    height: 52px;
    font-size: 16px;
    text-align: center;
  }
}

.selectorCard label{
  text-align: center;
}

/* ===== Mobile-first Command Card Layout ===== */
.main{
  display:flex;
  justify-content:center;
  padding: 12px 0 110px; /* room for bottom bar */
}

.commandCard{
  width: min(780px, 100%);
  margin: 0 auto;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  backdrop-filter: blur(10px);
}

.cardHeader{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.cardTitle{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2px;
  color: rgba(0,0,0,0.72);
}
.ghostBtn{
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.6);
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 13px;
}

.selectorGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items:end;
}
.selectorGrid label{
  text-align:left;
}
.selectorGrid select{
  width:100%;
  height: 52px;
  font-size: 16px; /* iOS no-zoom */
  border-radius: 14px;
}

.chipsRow{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-top: 10px;
}
.chip{
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.66);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}
.chip strong{font-weight:700}
.chip:active{transform: scale(0.98);}

.nowCard{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.65);
}
.nowTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.nowTitle{
  font-size: 15px;
  font-weight: 800;
  color: rgba(0,0,0,0.78);
  min-width: 0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.pillWrap{display:flex; align-items:center; gap: 8px; flex: 0 0 auto;}
.nowSub{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
}

/* Order remark collapsible */
.orderWrap{margin-top: 10px;}
.orderRemark{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.6);
  font-size: 12.5px;
  color: rgba(0,0,0,0.62);
  line-height: 1.35;
}

/* Tabs as tiles */
.tabsGrid{
  margin-top: 12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.tab{
  width:100%;
  min-height: 54px;
  border-radius: 16px !important;
  padding: 12px 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .2px;
}
.tab[aria-selected="true"]{
  outline: 2px solid rgba(0,0,0,0.10);
}
.tab.suggested{
  box-shadow: 0 0 0 2px rgba(50, 115, 220, 0.22);
}

/* Next suggestion */
.nextSuggestion{
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.65);
  display:none;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.nextSuggestion.show{display:flex;}
.nextLabelTitle{font-size:12px; opacity:.65; font-weight:700;}
.nextLabel{font-size:13px; font-weight:800; opacity:.8;}
.nextActions{display:flex; gap:8px;}
.btn.subtle{
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.08);
}

/* Sticky bottom control bar */
.bottomBar{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 90;
  max-width: 780px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 14px 28px rgba(0,0,0,0.10);
  backdrop-filter: blur(10px);
}
.barRow{
  display:flex;
  align-items:center;
  gap: 10px;
}
.barButtons{
  display:flex;
  gap: 10px;
  flex: 0 0 auto;
}
.barButtons .btn{
  height: 52px;
  min-width: 92px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
}
.btn.danger{
  border: 1px solid rgba(220,60,60,0.25);
}
.barSeek{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-top: 10px;
}
.barSeek input[type="range"]{width:100%;}
.time{width:46px; text-align:center; font-variant-numeric: tabular-nums; opacity:.7; font-size:12px;}

/* Hide old mobile player card if exists */
.mobilePlayer{display:none !important;}

/* Footer signature */
.siteFooter{
  text-align:center;
  padding: 18px 0 20px;
  color: rgba(0,0,0,0.45);
  font-size: 12.5px;
}
.sigLine strong{color: rgba(0,0,0,0.62);}

/* Responsive */
@media (max-width: 420px){
  .barButtons .btn{min-width: 80px; padding-left: 12px; padding-right: 12px;}
  .tabsGrid{grid-template-columns: 1fr;}
  .tab{min-height: 56px; font-size: 14px;}
}
@media (min-width: 900px){
  .tabsGrid{grid-template-columns: 1fr 1fr 1fr;}
}

/* Center the Airline/Destination selectors visually */
.selectorGrid{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.selectorGrid .field label{
  text-align: center !important;
}
.selectorGrid select{
  text-align: center;
}

/* ===== Header title image alignment ===== */
.appHeader, .appbar{
  width: min(780px, 100%);
  margin: 0 auto;
  padding: 14px 14px 6px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.titleWrap{flex:1; display:flex; justify-content:center;}
.titleImg{
  width: min(520px, 100%);
  max-height: 64px;
  object-fit: contain;
  display:block;
}
@media (max-width: 480px){
  .titleImg{max-height: 54px;}
}

/* Ensure footer is not hidden behind bottom bar */
.siteFooter{
  padding-bottom: calc(120px + env(safe-area-inset-bottom));
}


/* Title image only – no background, no text */
.appHeader{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.titleImg{
  background: transparent !important;
}


/* ===== Wide aligned main title ===== */
.appHeader{
  width: 100%;
  display: flex;
  justify-content: center;
  background: transparent;
  margin-bottom: 6px;
}

.headerInner{
  width: min(780px, 100%);
  padding: 12px 14px 4px;
  display: flex;
  align-items: center;
}

.titleImg{
  width: 100%;
  max-height: 72px;
  object-fit: contain;
}

@media (max-width: 480px){
  .titleImg{
    max-height: 58px;
  }
}


/* Ensure title never exceeds content column */
.titleImg{
  max-width: 100%;
  height: auto;
}

/* Visible diagnostics line */
.errorLine{
  margin-top: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 12.5px;
  border: 1px solid rgba(220,60,60,0.22);
  background: rgba(220,60,60,0.08);
  color: rgba(120,20,20,0.9);
}
