:root{
  --fx-card:#ffffff;
  --fx-soft:#f6f7fb;
  --fx-text:#0f172a;
  --fx-muted:#64748b;
  --fx-border:rgba(15,23,42,.08);
  --fx-shadow:0 18px 50px rgba(15,23,42,.12);
  --fx-shadow2:0 12px 30px rgba(15,23,42,.10);
}

/* === SEARCH CONTAINER === */
.search-shell{
  background: var(--fx-card);
  border-radius: 26px;
  box-shadow: var(--fx-shadow);
  border: 1px solid var(--fx-border);
  padding: 16px;
}

/* === GRID === */
.search-grid{
  display:grid;
  grid-template-columns: 1.25fr 56px 1.25fr 0.9fr 0.9fr 0.9fr auto;
  gap:10px;
  align-items:center;
}

/* === LABEL & INPUT === */
.fx-label{
  font-weight:900;
  font-size:12px;
  margin-bottom:6px;
}

.fx-input{
  height:56px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  padding:0 14px;
  font-weight:800;
}

/* === SWAP === */
.swap-btn{
  width:56px;
  height:56px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
      margin-top: 20px;
}

/* === RETURN === */
.ret-wrap{ position:relative; }
.ret-clear{
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  cursor:pointer;
  font-weight:900;
}

/* === AUTOCOMPLETE === */
.ac-box{
  position:absolute;
  top:calc(100% + 6px);
  left:0; right:0;
  background:#fff;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  display:none;
  z-index:9999;
}
.ac-item{
  padding:12px 14px;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
}
.ac-item:hover{ background:#f8fafc; }

/* === PAX === */
.pax-btn{
  height:56px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  font-weight:900;
  width:100%;
  text-align:left;
  padding:0 14px;
}
.pax-pop{
  position:absolute;
  right:0;
  top:calc(100% + 8px);
  width:280px;
  background:#fff;
  border-radius:18px;
  padding:12px;
  display:none;
  z-index:9999;
}

  /* pax popover */
  .pax-pop{
    position:absolute;
    right:0;
    top: calc(100% + 8px);
    width: 280px;
    background:#fff;
    border-radius: 18px;
    border:1px solid rgba(15,23,42,.10);
    box-shadow: var(--fx-shadow);
    padding: 12px;
    display:none;
    z-index: 9999;
  }
  .pax-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 10px 8px;
    border-radius: 14px;
  }
  .pax-row:hover{ background:#f8fafc; }
  .pax-ctl{
    display:flex;
    align-items:center;
    gap:10px;
  }
  .pax-ctl button{
    width:34px; height:34px;
    border-radius: 12px;
    border:1px solid rgba(15,23,42,.10);
    background:#fff;
    font-weight:1100;
  }
  .pax-ctl span{ min-width: 18px; text-align:center; font-weight:1100; }
.type-tabs button {
    font-size: 12px;
	line-height: 13px;
}
#paxDone{
	height:40px;
}
/* === CTA === */
.fx-cta{
  height:48px;
  border-radius:16px;
  font-weight:900;
  white-space:nowrap;
}

/* TYPE TAB KAPALI */
.col-type{ display:none !important; }