/* ========== Base, no CSS variables ========== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}
html,
body {
  height: 100%;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
body {
  color: #0f172a;
  line-height: 1.6;
}

/* ========== Layout ========== */
.xl-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: rgb(255, 255, 255);
}
.main-conatner {
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .main-conatner {
    padding: 0 16px;
  }
}

/* ========== Header ========== */
.xl-header {
  background: #ffffff;
  border-bottom: 1px solid #e6e9ee;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;

}
.xl-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.xl-logo {
  width: 120px;
  height: auto;
}
@media (min-width: 900px) {
  .xl-logo {
    width: 140px;
  }
}
.xl-nav {
  display: none;
  gap: 12px;
  flex: 1;
}
@media (min-width: 600px) {
  .xl-nav {
    display: flex;
  }
}
.xl-nav__item {
  text-decoration: none;
  color: #000000;
  font-size: 0.95rem;
  padding: 4px 8px;
  border-radius: 8px;
  white-space: nowrap;
}
.xl-nav__item:hover {
  color: #1f6feb;
  background: rgba(31, 111, 235, 0.06);
}
.xl-search {
  display: flex;
  align-items: center;
}
.xl-search__btn {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all 150ms ease;
}
.xl-search__btn:focus {
  outline: 3px solid rgba(31, 111, 235, 0.16);
}
.xl-search__btn:hover {
  background: rgba(31, 111, 235, 0.06);
}
.xl-search__icon {
  fill: #64748b;
  width: 20px;
  height: 20px;
}
.xl-search__btn:hover .xl-search__icon {
  fill: #1f6feb;
}
.xl-lang {
  position: relative;
  display: flex;
  align-items: center;
}
.xl-lang__select {
  appearance: none;
  background: transparent;
  border: 1px solid #e6e9ee;
  border-radius: 8px;
  padding: 8px 30px 8px 10px;
  font-size: 0.95rem;
  color: #0f172a;
  cursor: pointer;
}
.xl-lang__icon {
  position: absolute;
  right: 8px;
  pointer-events: none;
  fill: #64748b;
}

/* ========== Main blocks ========== */
.xl-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
}
.dashboad-img {
  background-color: #ffffff;
}
.xl-banner {
  width: 100%;
  padding: 60px 50px;
  background-color: #ffffff;
}
@media (max-width: 425px) {
  .xl-banner {
    padding: 30px 0;
  }
}
.xl-descriptions {
  font-size: 24px;
  line-height: 1.9;
  color: #000;
  max-width: 100ch;
  margin: 24px 0;
  text-align: justify;
}


@media (max-width: 425px) {
  .xl-descriptions {
    font-size: 16px;
  }
}

/* ========== Orders/Payments Cards ========== */
.table-box-s1 {
  width: 100%;
  margin: 40px 0px;
}
.xt-card,
.xt-card2 {
  margin-top: 24px;
  padding: 0 75px;
}
.last-tr-mt{
  border: none;
}
@media (max-width: 768px) {
  .xt-card,
  .xt-card2 {
    padding: 0 16px;
  }
}
.xt-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0;
}
.xt-heading {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin: 0;
}

/* Layout */
.xt-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Make the span feel like a button (without altering the img) */
.xt-search-trigger {
  cursor: pointer;
  outline: none;
}
.xt-search-trigger:focus {
  outline: 2px solid #1183d6;
  outline-offset: 2px;
}

/* Collapsible search */
#xt-search-region[hidden] {
  display: none;
}
#xt-search-form {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
#xt-search-input {
  width: 0;
  opacity: 0;
  padding: 6px 8px;
  transition: width 160ms ease, opacity 120ms ease;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#xt-search-region.open #xt-search-input {
  width: 180px;
  opacity: 1;
  border-radius: 20px;
    padding: 6px 14px;
}
.a-tag-xt{
      color: black;
    text-decoration: underline;
}

/* Screen-reader only label */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 425px) {
  .xt-heading {
    font-size: 24px;
  }
}
.xt-rupee {
  margin-left: 10px;
  font-weight: 500;
}
.xt-rupee .xt-amount {
  letter-spacing: 0.4px;
}
.xt-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.xt-pdf-icon {
  padding: 6px;
  border: 1px solid #939191;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s ease;
  cursor: pointer;
}
.xt-pdf-icon:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
.xt-icon-img {
  width: 25px;
  transition: filter 0.3s ease;
}
.xt-pdf-icon:hover .xt-icon-img {
  filter: brightness(0) invert(1);
}

/* ========== Tables ========== */
.xt-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}
.xt-tr-box {
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}
.xt-table th,
.xt-table td {
  padding: 16px 12px;
  text-align: left;
  border-top: 1px solid #000;
  vertical-align: middle;
  word-wrap: break-word;
}
.xt-table thead th {
  font-size: 16px;
  font-weight: 700;
  padding-top: 18px;
  padding-bottom: 16px;
}


.xt-col-idx {
  width: 56px;
}
.xt-col-time {
  width: 220px;
}
.xt-col-name {
  width: 215px;
}
.xt-col-sr {
  width: 170px;
}
.xt-col-cust,
.xt-col-custs {
  width: 200px;
}
.xt-col-city,
.xt-col-citys {
  width: 160px;
}
.xt-col-total {
  width: 180px;
}
.xt-subtitle {
  color: #64748b;
  font-weight: 600;
  display: block;
  font-size: 13px;
  margin-top: 2px;
}
.xt-money {
  font-weight: 500;
}



/* Visual slider */
.xt-sliderline {
  position: relative;
  height: 5px;
  background: #000;
  border-radius: 6px;
  margin: 18px 0;
}
.xt-thumb {
  position: absolute;
  left: 70%;
  width: 200px;
  height: 10px;
  background: #222;
  border-radius: 6px;
}
.xt-labelicon {
  width: 40px;
}

/* Pagination */
.xt-pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin: 60px 32px 0;
}
.xt-pagebtn {
  width: 30px;
  height: 30px;
  border: 3px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.xt-caret {
  width: 9px;
  height: 9px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
}
.xt-caret.right {
  transform: rotate(-135deg);
}
.xt-pageidx {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #d1d0d0;
  background: #fff;
}
.xt-pageidx:hover,
.xt-pageidx.xt-active {
  background: #000;
  color: #fff;
}

/* ========== Make New Payment ========== */
.mt-wrap {
  max-width: 1120px;
  margin: 40px auto;
  padding: 24px 70px 80px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: #fff;
}
.mt-title {
  text-align: center;
  font-weight: 600;
  font-size: 28px;
  margin: 20px 0 36px;
  letter-spacing: 0.2px;
}
.mt-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0 20px;
}
.mt-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 980px) {
  .mt-grid {
    grid-template-columns: 1fr;
  }
  .mt-wrap{
    padding: 0px;
  }
}
.mt-list {
  list-style: none;
}
.mt-item {
  margin: 10px 0;
}
.mt-check {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: #3b3b3b;
}
.mt-check input[type="checkbox"] {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #bdbdbd;
  border-radius: 4px;
  display: grid;
  place-content: center;
  background: #fff;
}
.mt-check input[type="checkbox"]:checked {
  background: #e9ecef;
  border-color: #9aa0a6;
}
.mt-check input[type="checkbox"]:checked::after {
  content: "✓";
  font-size: 16px;
  color: #777;
  line-height: 1;
}
.mt-other {
  position: relative;
}
.mt-input,
.xt-name-input {
  border: none;
  border-bottom: 1px solid rgb(45, 44, 44);
  outline: none;
  padding: 6px 4px;
  font-size: 16px;
  transition: border-color 0.3s ease, border-width 0.3s ease;
}

.mt-input:focus,
.xt-name-input:focus {
  border-bottom: 2px solid #000000; /* focus pe highlight */
}


.mt-dots {
  display: none;
}
@media (max-width: 520px) {
  .mt-check {
    font-size: 16px;
  }
   .mt-wrap{
    padding: 0px;
  }
}
.mt-right {
  display: flex;
  justify-content: center;
}
.mt-card {
  width: 100%;
  max-width: 400px;
  background: #f2f2f2;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 26px 26px 20px;
  border: 1px solid #eee;
}
.mt-card-title {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 16px;
  background: #f2f2f2;
}
.mt-table {
  width: 100%;
  background: #f2f2f2;
}
.mt-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 12px 0;
  font-size: 14px;
  color: #515151;
  background: #f2f2f2;
}
.mt-head {
  font-weight: 600;
  color: #222;
  border-top: 2px solid #000;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 4px;
  padding-top: 12px;
  background: #f2f2f2;
}
.mt-sep {
  border-top: 1.5px solid #dcdcdc;
  margin: 8px 0;
  background: #f2f2f2;
}
.mt-hr {
  border-top: 2px solid #000;
  margin: 8px 0 0;
  background: #f2f2f2;
}
.mt-total {
  font-weight: 700;
  color: #111;
  padding: 14px 0 6px;
  background: #f2f2f2;
}
.mt-right-align {
  text-align: right;
  background: #f2f2f2;
}
.mt-terms {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4b4b4b;
  margin: 16px 0 14px;
  background: #f2f2f2;
}
.payments-mt {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  background: #f2f2f2;
}
.mt-terms input[type="radio"] {
  accent-color: #111;
}
.mt-pay {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  margin-top: 6px;
  padding: 6px 28px;
  border-radius: 24px;
  border: 1px solid rgb(218, 216, 216);
  background: #ffffff;
  color: #111;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  box-shadow: 12px 4px 0 -6px rgba(0, 0, 0, 0.3);
}




.mt-pay:active {
  transform: translateY(1px);
  box-shadow: 12px 4px 0 -6px rgba(0, 0, 0, 0.3);
}

.mt-razor {
  width: 70px;
  letter-spacing: 0.2px;
  background-size: cover;
  background-color: white;
}

.mt-pay .mt-razor {
  background-color: transparent; /* transparent rakhna zaroori hai */
  height: 10px; /* size adjust */
}

/* ========== Affiliate Partner Form ========== */
.mt-wraps {
  width: 64%;
  margin: 40px auto;
  padding: 24px 200px 80px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: #fff;
}
@media (max-width: 900px) {
  .mt-wraps {
    padding: 24px 10px 60px;
    width: 100%;
  }
}
@media (max-width: 425px) {
  .mt-wraps {
    padding: 16px 12px 56px;
    margin: 20px auto;
    width: 100%;
  }
}
.xt-sub-box {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
}
.xt-sub-box2 {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 10px 0px 60px 0px;
}
@media (max-width: 768px) {
  .xt-sub-box2 {
    flex-direction: column;
    gap: 10px;
  }
}
.xt-child-box {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .xt-child-box {
    width: 100%;
  }
}
.xt-name-input {
  appearance: none;
  border: none;
  background: transparent;
  padding: 10px 2px 6px;
  border-bottom: 2px solid #747272;
  font-size: 14px;
  outline: none;
  color: #313030;
  margin-bottom: 18px;
}
.sx-actions {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.sx-btn {
  width: 250px;
  border: 1px solid rgba(216, 215, 215, 0.82);
  outline: none;
  cursor: pointer;
  padding: 16px 22px;
  background: #ffffff;
  color: #0f172a;
  font-size: 15px;
  line-height: 1;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 12px 4px 0 -6px rgba(0, 0, 0, 0.3);
  transition: transform 0.06s ease, background 0.2s ease, color 0.2s ease;
}
.sx-btn:hover {
  background: #000;
  color: #fff;
}
.sx-btn:focus-visible {
  outline: 2px solid #9aa1aa22;
  outline-offset: 2px;
}
@media (max-width: 425px) {
  .sx-actions {
    gap: 12px;
  }
  .sx-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px 18px;
  }
}

/* ========== Footer ========== */
.xl-footer {
  background-color: #808080;
  color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  margin: 16px 0 20px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}
.xl-footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .xl-footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  .xl-footer-container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.xl-footer-col ul {
  list-style: none;
  padding: 0;
}
.xl-footer-about p {
  margin: 6px 0;
  line-height: 1.6;
  font-size: 16px;
}
.xl-footer-about hr {
  border: 0;
  border-top: 1px solid #aaa;
  margin: 10px 0;
}
.xl-footer-title {
  font-weight: 700;
  margin-bottom: 10px;
  border-bottom: 2px solid #ffffff;
  display: inline-block;
  padding-bottom: 4px;
  font-size: 20px;
}
.xl-footer-col li {
  margin: 6px 0;
  cursor: pointer;
  font-size: 16px;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}
.xl-footer-col li:hover {
  color: #c0c0c0;
  text-decoration: underline;
}
.xl-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  filter: brightness(0) invert(1);
}
.xl-footer-social img {
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: transform 0.3s;
}
.xl-footer-social img:hover {
  transform: scale(1.05);
}
.copywrite {
  text-align: center;
  font-size: 14px;
  margin: 10px 0 20px;
  color: #64748b;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.copywrite-img {
  vertical-align: middle;
}

/* ========== Responsive Tables: stacked under 600px ========== */
@media (max-width: 900px) {
  .xt-table th,
  .xt-table td {
    padding: 14px 10px;
  }
  .xt-col-time {
    width: 200px;
  }
  .xt-col-name {
    width: 200px;
  }
  .xt-col-total {
    width: 160px;
  }
  .xt-thumb {
    width: 180px;
    left: 60%;
  }
}
@media (max-width: 600px) {
  .xt-actions {
    gap: 12px;
  }
  .xt-titlebar {
    flex-wrap: wrap;
    gap: 12px;
  }
  .xt-table thead {
    display: none;
  }
  .xt-table,
  .xt-table tbody,
  .xt-table tr,
  .xt-table td {
    display: block;
    width: 100%;
  }
  .xt-table tr {
    border-bottom: 1px solid #e6e9ee;
    padding: 14px 0;
  }
  .xt-table td {
    border: none;
    padding: 6px 0;
  }
  .xt-rowtitle {
    font-weight: 700;
    margin-bottom: 6px;
  }
  .xt-pair {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .xt-pair .xt-label {
    color: #64748b;
    font-size: 13px;
  }
  .xt-sliderline {
    height: 8px;
  }
  .xt-thumb {
    height: 8px;
    width: 45%;
    left: 40%;
  }
  .xt-pager {
    margin: 30px 16px;
    gap: 14px;
  }
  .xt-pageidx {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 425px) {
  .xt-pageidx {
    width: 48px;
    height: 48px;
  }
}
/* Tablet: 600px–768px */
@media only screen and (min-width: 600px) and (max-width: 768px) {
  .main-conatner {
    padding: 0 24px;
  } /* tighter than ≥768px, looser than mobile */
  .xl-nav {
    display: flex;
  } /* show nav starting at 600px */
  .xl-header {
    padding: 12px 20px;
  } /* slight breathing room */
  .xl-banner {
    padding: 48px 32px;
  } /* scale banner spacing for tablets */
  .xt-card,
  .xt-card2 {
    padding: 0 32px;
  } /* reduce from 75px desktop side padding */
  .xt-heading {
    font-size: 26px;
  } /* step between 24px (mobile) and 28px (desktop) */
  .xt-col-time {
    width: 200px;
  }
  .xt-col-name {
    width: 220px;
  }
  .xt-col-total {
    width: 170px;
  }
  .xt-thumb {
    width: 180px;
    left: 60%;
  } /* match existing ≤900 adjustments */
  .mt-grid {
    grid-template-columns: 1fr 380px;
    gap: 32px;
  } /* narrower card column */
  .mt-card {
    max-width: 360px;
  }
  .xl-footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  } /* 2 cols on tablets */
}
/* ========== Base, no CSS variables ========== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}
html,
body {
  height: 100%;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
body {
  color: #0f172a;
  line-height: 1.6;
}

/* ========== Layout ========== */
.xl-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: rgb(255, 255, 255);
}
.main-conatner {
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .main-conatner {
    padding: 0 16px;
  }
}

/* ========== Header ========== */
.xl-header {
  background: #ffffff;
  border-bottom: 1px solid #e6e9ee;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;

}
.xl-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.xl-logo {
  width: 120px;
  height: auto;
}
@media (min-width: 900px) {
  .xl-logo {
    width: 140px;
  }
}
.xl-nav {
  display: none;
  gap: 12px;
  flex: 1;
}
@media (min-width: 600px) {
  .xl-nav {
    display: flex;
  }
}
.xl-nav__item {
  text-decoration: none;
  color: #000000;
  font-size: 0.95rem;
  padding: 4px 8px;
  border-radius: 8px;
  white-space: nowrap;
}
.xl-nav__item:hover {
  color: #1f6feb;
  background: rgba(31, 111, 235, 0.06);
}
.xl-search {
  display: flex;
  align-items: center;
}
.xl-search__btn {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all 150ms ease;
}
.xl-search__btn:focus {
  outline: 3px solid rgba(31, 111, 235, 0.16);
}
.xl-search__btn:hover {
  background: rgba(31, 111, 235, 0.06);
}
.xl-search__icon {
  fill: #64748b;
  width: 20px;
  height: 20px;
}
.xl-search__btn:hover .xl-search__icon {
  fill: #1f6feb;
}
.xl-lang {
  position: relative;
  display: flex;
  align-items: center;
}
.xl-lang__select {
  appearance: none;
  background: transparent;
  border: 1px solid #e6e9ee;
  border-radius: 8px;
  padding: 8px 30px 8px 10px;
  font-size: 0.95rem;
  color: #0f172a;
  cursor: pointer;
}
.xl-lang__icon {
  position: absolute;
  right: 8px;
  pointer-events: none;
  fill: #64748b;
}

/* ========== Main blocks ========== */
.xl-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
}
.dashboad-img {
  background-color: #ffffff;
}
.xl-banner {
  width: 100%;
  padding: 60px 50px;
  background-color: #ffffff;
}
@media (max-width: 425px) {
  .xl-banner {
    padding: 30px 0;
  }
}
.xl-descriptions {
  font-size: 24px;
  line-height: 1.9;
  color: #000;
  max-width: 100ch;
  margin: 24px 0;
  text-align: justify;
}


@media (max-width: 425px) {
  .xl-descriptions {
    font-size: 16px;
  }
}

/* ========== Orders/Payments Cards ========== */
.table-box-s1 {
  width: 100%;
  margin: 40px 0px;
}
.xt-card,
.xt-card2 {
  margin-top: 24px;
  padding: 0 75px;
}
.last-tr-mt{
  border: none;
}
@media (max-width: 768px) {
  .xt-card,
  .xt-card2 {
    padding: 0 16px;
  }
}
.xt-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0;
}
.xt-heading {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin: 0;
}

/* Layout */
.xt-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Make the span feel like a button (without altering the img) */
.xt-search-trigger {
  cursor: pointer;
  outline: none;
}
.xt-search-trigger:focus {
  outline: 2px solid #1183d6;
  outline-offset: 2px;
}

/* Collapsible search */
#xt-search-region[hidden] {
  display: none;
}
#xt-search-form {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
#xt-search-input {
  width: 0;
  opacity: 0;
  padding: 6px 8px;
  transition: width 160ms ease, opacity 120ms ease;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#xt-search-region.open #xt-search-input {
  width: 180px;
  opacity: 1;
  border-radius: 20px;
    padding: 6px 14px;
}
.a-tag-xt{
      color: black;
    text-decoration: underline;
}

/* Screen-reader only label */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 425px) {
  .xt-heading {
    font-size: 24px;
  }
}
.xt-rupee {
  margin-left: 10px;
  font-weight: 500;
}
.xt-rupee .xt-amount {
  letter-spacing: 0.4px;
}
.xt-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.xt-pdf-icon {
  padding: 6px;
  border: 1px solid #939191;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s ease;
  cursor: pointer;
}
.xt-pdf-icon:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
.xt-icon-img {
  width: 25px;
  transition: filter 0.3s ease;
}
.xt-pdf-icon:hover .xt-icon-img {
  filter: brightness(0) invert(1);
}

/* ========== Tables ========== */
.xt-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}
.xt-tr-box {
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}
.xt-table th,
.xt-table td {
  padding: 16px 12px;
  text-align: left;
  border-top: 1px solid #000;
  vertical-align: middle;
  word-wrap: break-word;
}
.xt-table thead th {
  font-size: 16px;
  font-weight: 700;
  padding-top: 18px;
  padding-bottom: 16px;
}


.xt-col-idx {
  width: 56px;
}
.xt-col-time {
  width: 220px;
}
.xt-col-name {
  width: 215px;
}
.xt-col-sr {
  width: 170px;
}
.xt-col-cust,
.xt-col-custs {
  width: 200px;
}
.xt-col-city,
.xt-col-citys {
  width: 160px;
}
.xt-col-total {
  width: 180px;
}
.xt-subtitle {
  color: #64748b;
  font-weight: 600;
  display: block;
  font-size: 13px;
  margin-top: 2px;
}
.xt-money {
  font-weight: 500;
}



/* Visual slider */
.xt-sliderline {
  position: relative;
  height: 5px;
  background: #000;
  border-radius: 6px;
  margin: 18px 0;
}
.xt-thumb {
  position: absolute;
  left: 70%;
  width: 200px;
  height: 10px;
  background: #222;
  border-radius: 6px;
}
.xt-labelicon {
  width: 40px;
}

/* Pagination */
.xt-pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin: 60px 32px 0;
}
.xt-pagebtn {
  width: 30px;
  height: 30px;
  border: 3px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.xt-caret {
  width: 9px;
  height: 9px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
}
.xt-caret.right {
  transform: rotate(-135deg);
}
.xt-pageidx {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #d1d0d0;
  background: #fff;
}
.xt-pageidx:hover,
.xt-pageidx.xt-active {
  background: #000;
  color: #fff;
}

/* ========== Make New Payment ========== */
.mt-wrap {
  max-width: 1120px;
  margin: 40px auto;
  padding: 24px 70px 80px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: #fff;
}
.mt-title {
  text-align: center;
  font-weight: 600;
  font-size: 28px;
  margin: 20px 0 36px;
  letter-spacing: 0.2px;
}
.mt-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0 20px;
}
.mt-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 980px) {
  .mt-grid {
    grid-template-columns: 1fr;
  }
  .mt-wrap{
    padding: 0px;
  }
}
.mt-list {
  list-style: none;
}
.mt-item {
  margin: 10px 0;
}
.mt-check {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: #3b3b3b;
}
.mt-check input[type="checkbox"] {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #bdbdbd;
  border-radius: 4px;
  display: grid;
  place-content: center;
  background: #fff;
}
.mt-check input[type="checkbox"]:checked {
  background: #e9ecef;
  border-color: #9aa0a6;
}
.mt-check input[type="checkbox"]:checked::after {
  content: "✓";
  font-size: 16px;
  color: #777;
  line-height: 1;
}
.mt-other {
  position: relative;
}
.mt-input,
.xt-name-input {
  border: none;
  border-bottom: 1px solid rgb(45, 44, 44);
  outline: none;
  padding: 6px 4px;
  font-size: 16px;
  transition: border-color 0.3s ease, border-width 0.3s ease;
}

.mt-input:focus,
.xt-name-input:focus {
  border-bottom: 2px solid #000000; /* focus pe highlight */
}


.mt-dots {
  display: none;
}
@media (max-width: 520px) {
  .mt-check {
    font-size: 16px;
  }
   .mt-wrap{
    padding: 0px;
  }
}
.mt-right {
  display: flex;
  justify-content: center;
}
.mt-card {
  width: 100%;
  max-width: 400px;
  background: #f2f2f2;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 26px 26px 20px;
  border: 1px solid #eee;
}
.mt-card-title {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 16px;
  background: #f2f2f2;
}
.mt-table {
  width: 100%;
  background: #f2f2f2;
}
.mt-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 12px 0;
  font-size: 14px;
  color: #515151;
  background: #f2f2f2;
}
.mt-head {
  font-weight: 600;
  color: #222;
  border-top: 2px solid #000;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 4px;
  padding-top: 12px;
  background: #f2f2f2;
}
.mt-sep {
  border-top: 1.5px solid #dcdcdc;
  margin: 8px 0;
  background: #f2f2f2;
}
.mt-hr {
  border-top: 2px solid #000;
  margin: 8px 0 0;
  background: #f2f2f2;
}
.mt-total {
  font-weight: 700;
  color: #111;
  padding: 14px 0 6px;
  background: #f2f2f2;
}
.mt-right-align {
  text-align: right;
  background: #f2f2f2;
}
.mt-terms {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4b4b4b;
  margin: 16px 0 14px;
  background: #f2f2f2;
}
.payments-mt {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  background: #f2f2f2;
}
.mt-terms input[type="radio"] {
  accent-color: #111;
}
.mt-pay {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  margin-top: 6px;
  padding: 6px 28px;
  border-radius: 24px;
  border: 1px solid rgb(218, 216, 216);
  background: #ffffff;
  color: #111;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  box-shadow: 12px 4px 0 -6px rgba(0, 0, 0, 0.3);
}




.mt-pay:active {
  transform: translateY(1px);
  box-shadow: 12px 4px 0 -6px rgba(0, 0, 0, 0.3);
}

.mt-razor {
  width: 70px;
  letter-spacing: 0.2px;
  background-size: cover;
  background-color: white;
}

.mt-pay .mt-razor {
  background-color: transparent; /* transparent rakhna zaroori hai */
  height: 10px; /* size adjust */
}

/* ========== Affiliate Partner Form ========== */
.mt-wraps {
  width: 64%;
  margin: 40px auto;
  padding: 24px 200px 80px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: #fff;
}
@media (max-width: 900px) {
  .mt-wraps {
    padding: 24px 10px 60px;
    width: 100%;
  }
}
@media (max-width: 425px) {
  .mt-wraps {
    padding: 16px 12px 56px;
    margin: 20px auto;
    width: 100%;
  }
}
.xt-sub-box {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
}
.xt-sub-box2 {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 10px 0px 60px 0px;
}
@media (max-width: 768px) {
  .xt-sub-box2 {
    flex-direction: column;
    gap: 10px;
  }
}
.xt-child-box {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .xt-child-box {
    width: 100%;
  }
}
.xt-name-input {
  appearance: none;
  border: none;
  background: transparent;
  padding: 10px 2px 6px;
  border-bottom: 2px solid #747272;
  font-size: 14px;
  outline: none;
  color: #313030;
  margin-bottom: 18px;
}
.sx-actions {
  display: flex;
  gap: 75px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.sx-btn {
  width: 250px;
  border: 1px solid rgba(216, 215, 215, 0.82);
  outline: none;
  cursor: pointer;
  padding: 16px 22px;
  background: #f4f5f7;
  color: #0f172a;
  font-size: 15px;
  line-height: 1;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 12px 4px 0 -6px rgba(0, 0, 0, 0.3);
  transition: transform 0.06s ease, background 0.2s ease, color 0.2s ease;
}
.sx-btn:hover {
  background: #000;
  color: #fff;
}
.sx-btn:focus-visible {
  outline: 2px solid #9aa1aa22;
  outline-offset: 2px;
}
@media (max-width: 425px) {
  .sx-actions {
    gap: 12px;
  }
  .sx-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px 18px;
  }
}

/* ========== Footer ========== */
.xl-footer {
  background-color: #808080;
  color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  margin: 16px 0 20px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}
.xl-footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .xl-footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  .xl-footer-container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.xl-footer-col ul {
  list-style: none;
  padding: 0;
}
.xl-footer-about p {
  margin: 6px 0;
  line-height: 1.6;
  font-size: 16px;
}
.xl-footer-about hr {
  border: 0;
  border-top: 1px solid #aaa;
  margin: 10px 0;
}
.xl-footer-title {
  font-weight: 700;
  margin-bottom: 10px;
  border-bottom: 2px solid #ffffff;
  display: inline-block;
  padding-bottom: 4px;
  font-size: 20px;
}
.xl-footer-col li {
  margin: 6px 0;
  cursor: pointer;
  font-size: 16px;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}
.xl-footer-col li:hover {
  color: #c0c0c0;
  text-decoration: underline;
}
.xl-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  filter: brightness(0) invert(1);
}
.xl-footer-social img {
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: transform 0.3s;
}
.xl-footer-social img:hover {
  transform: scale(1.05);
}
.copywrite {
  text-align: center;
  font-size: 14px;
  margin: 10px 0 20px;
  color: #64748b;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.copywrite-img {
  vertical-align: middle;
}

/* ========== Responsive Tables: stacked under 600px ========== */
@media (max-width: 900px) {
  .xt-table th,
  .xt-table td {
    padding: 14px 10px;
  }
  .xt-col-time {
    width: 200px;
  }
  .xt-col-name {
    width: 200px;
  }
  .xt-col-total {
    width: 160px;
  }
  .xt-thumb {
    width: 180px;
    left: 60%;
  }
}
@media (max-width: 600px) {
  .xt-actions {
    gap: 12px;
  }
  .xt-titlebar {
    flex-wrap: wrap;
    gap: 12px;
  }
  .xt-table thead {
    display: none;
  }
  .xt-table,
  .xt-table tbody,
  .xt-table tr,
  .xt-table td {
    display: block;
    width: 100%;
  }
  .xt-table tr {
    border-bottom: 1px solid #e6e9ee;
    padding: 14px 0;
  }
  .xt-table td {
    border: none;
    padding: 6px 0;
  }
  .xt-rowtitle {
    font-weight: 700;
    margin-bottom: 6px;
  }
  .xt-pair {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .xt-pair .xt-label {
    color: #64748b;
    font-size: 13px;
  }
  .xt-sliderline {
    height: 8px;
  }
  .xt-thumb {
    height: 8px;
    width: 45%;
    left: 40%;
  }
  .xt-pager {
    margin: 30px 16px;
    gap: 14px;
  }
  .xt-pageidx {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 425px) {
  .xt-pageidx {
    width: 48px;
    height: 48px;
  }
}
/* Tablet: 600px–768px */
@media only screen and (min-width: 600px) and (max-width: 768px) {
  .main-conatner {
    padding: 0 24px;
  } /* tighter than ≥768px, looser than mobile */
  .xl-nav {
    display: flex;
  } /* show nav starting at 600px */
  .xl-header {
    padding: 12px 20px;
  } /* slight breathing room */
  .xl-banner {
    padding: 48px 32px;
  } /* scale banner spacing for tablets */
  .xt-card,
  .xt-card2 {
    padding: 0 32px;
  } /* reduce from 75px desktop side padding */
  .xt-heading {
    font-size: 26px;
  } /* step between 24px (mobile) and 28px (desktop) */
  .xt-col-time {
    width: 200px;
  }
  .xt-col-name {
    width: 220px;
  }
  .xt-col-total {
    width: 170px;
  }
  .xt-thumb {
    width: 180px;
    left: 60%;
  } /* match existing ≤900 adjustments */
  .mt-grid {
    grid-template-columns: 1fr 380px;
    gap: 32px;
  } /* narrower card column */
  .mt-card {
    max-width: 360px;
  }
  .xl-footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  } /* 2 cols on tablets */
}
