/* Defalut Style */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rootbg:#F8F9FA;
    --primary: #FFFFFF;
    --secondary: #CACFD8;
    --action: #005FFF;
    --white: #ffffff;
    --white-2: #EFF3F6;
    --black: #27272A;
    --black-2: #52525B;
    --font_inter: "Inter", sans-serif;
}

body {
    font-family: var(--font_inter);
    line-height: 1;
    color: var(--secondary);
    background-color: var(--rootbg);
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    color: var(--black);
}

ul,
ol {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.3s;
    color: var(--black-2);
    display: inline-block;
}

button {
    background-color: transparent;
    border: 0;
    transition: 0.3s ease-in-out;
    display: inline-block;
}

p {
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--secondary);

}

strong {
    font-weight: 500;
}

video,
iframe,
img {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    transition: 0.3s ease-in-out;
    display: inline-block;
}

/* font inter  */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* font inter variable  */
@font-face {
    font-family: intervariable;
    src: url(../fonts/InterVariable.ttf);
}

.section-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: -0.01em;

    @media (max-width: 1400px) {
        font-size: 50px;
    }

    @media (max-width: 1200px) {
        font-size: 46px;
    }

    @media (max-width: 991px) {
        font-size: 40px;
    }

    @media (max-width: 767px) {
        font-size: 35px;
    }

    @media (max-width: 500px) {
        font-size: 32px;
    }
}

.section-spacing {
    padding-top: 130px;
    padding-bottom: 130px;

    @media (max-width: 1400px) {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    @media (max-width: 1200px) {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    @media (max-width: 991px) {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.section-spacing-top {
    padding-top: 130px;

    @media (max-width: 1400px) {
        padding-top: 110px;
    }

    @media (max-width: 1200px) {
        padding-top: 80px;
    }

    @media (max-width: 991px) {
        padding-top: 60px;
    }
}

.section-spacing-bottom {
    padding-bottom: 130px;

    @media (max-width: 1400px) {
        padding-bottom: 110px;
    }

    @media (max-width: 1200px) {
        padding-bottom: 80px;
    }

    @media (max-width: 1200px) {
        padding-bottom: 60px;
    }
}

.container {
    max-width: 1490px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.box-shadow{
    background: var(--white);
    border-radius: 16px;
}
.wcs-btn-primary {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    padding: 12px 22px;
    color: var(--black-2);
    border-radius: 8px;
}
/* footer style  */
.wcs-footer {
    background-color: #151D62;
    margin-top: 56px;
    padding: 24px 0 0 0;
}

.wcs-footer__item {
    text-align: center;
    max-width: 621px;
    margin: auto;
}

.footer-logo {
    margin-bottom: 22px;
}

.footer-text {
    margin-bottom: 22px;
    p{
        font-weight: 400;
        font-size: 16px;
        line-height: 1.5;
        color: #E4E4E7;
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.wcs-footer-copyright {
    text-align: center;
    margin-top: 37px;
    padding: 12px 0;
    border-top: 1px solid #6A70A4;
    p,a{
        font-weight: 400;
        font-size: 14px;
        line-height: 1;
        color: var(--white);
    }
}

/* =====================================================
   TABLE BASE
===================================================== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  font-family: Inter, system-ui, sans-serif;
}

/* =====================================================
   TABLE HEAD
===================================================== */
table thead {
  background: #EFF3F6;
}

table thead th {
  padding: 19px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  white-space: nowrap;
}

/* rounded header */
table thead th:first-child {
  border-top-left-radius: 16px;
}

table thead th:last-child {
  border-top-right-radius: 16px;
}

/* =====================================================
   TABLE ROWS
===================================================== */
table tbody tr {
  transition: background 0.2s ease;
}

table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #e5e7eb;
}

/* =====================================================
   TABLE CELLS
===================================================== */
table td {
  padding: 8px 20px;
  font-size: 15px;
  color: #374151;
  vertical-align: middle;
  border-bottom: 1px solid rgba(228, 228, 231, 1);
}

/* =====================================================
   COMMON TEXT STYLES
===================================================== */
table .edd_purchase_id,
table .edd_purchase_amount {
  font-weight: 500;
  color: #111827;
}

/* =====================================================
   STATUS BADGES (generic)
===================================================== */
table .complete {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #22c55e;
  background: #f0fdf4;
}

table .pending {
  color: #f59e0b;
  background: #fffbeb;
}

table .failed {
  color: #ef4444;
  background: #fef2f2;
}

/* =====================================================
   TABLE LINKS
===================================================== */
table a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 16px;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

table a:hover {
  color: #1d4ed8;
}

/* =====================================================
   MOBILE RESPONSIVE (GLOBAL)
===================================================== */
@media (max-width: 768px) {
  table thead {
    display: none;
  }

  table,
  table tbody,
  table tr,
  table td {
    display: block;
    width: 100%;
  }

  table tr {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
  }

  table td {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  table td::before {
    content: attr(class);
    font-weight: 500;
    color: #6b7280;
  }
}

.wcs-main-content {
    min-height: 35vh;
}