/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 19 2026 | 13:05:45 */
  .ledger-banner {
    width: 100%;
    margin: 48px auto;
    background: #ffffff;
    border: 1px solid #e7e9ee;
    border-radius: 18px;
    overflow: hidden;
    font-family: "Poppins", Arial, sans-serif;
    color: #0f172a;
  }

  .ledger-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e7e9ee;
  }

  .ledger-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
  }

  .ledger-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e7e9ee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
  }

  .ledger-logo img {
    width: 72%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .ledger-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .ledger-name strong {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 900;
    color: #0b1220;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ledger-name span {
    font-size: 12px;
    color: rgba(15, 23, 42, 0.62);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ledger-chip {
    padding: 9px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e7e9ee;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.62);
    flex-shrink: 0;
  }

  .ledger-body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 18px;
    padding: 22px 20px 20px;
    align-items: center;
  }

  .ledger-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 6px;
  }

  .ledger-title {
    font-size: 1.85rem;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0b1220;
  }

  .ledger-title b {
    font-weight: 900;
    background: #eef2ff;
    border: 1px solid #e0e7ff;
    color: #1d4ed8;
    padding: 2px 10px;
    border-radius: 999px;
    display: inline-block;
  }

  .ledger-sub {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(15, 23, 42, 0.70);
    max-width: 72ch;
  }

  .ledger-cta {
    background: #0b1220;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .ledger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0b1220;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  }

  .ledger-btn:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(0,0,0,0.28);
  }

  .ledger-btn svg {
    width: 16px;
    height: 16px;
  }

  .ledger-note {
    font-size: 12px;
    text-align: center;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    font-weight: 800;
  }

  @media (max-width: 980px) {
    .ledger-top {
      flex-direction: column;
      gap: 10px;
      align-items: flex-start;
    }

    .ledger-body {
      grid-template-columns: 1fr;
      text-align: left;
    }

    .ledger-cta {
      width: 100%;
    }

    .ledger-btn {
      width: 100%;
    }
  }

  @media (max-width: 720px) {
    .ledger-top {
      align-items: center;
      text-align: center;
    }

    .ledger-brand {
      justify-content: center;
      width: 100%;
    }

    .ledger-body {
      text-align: center;
    }

    .ledger-copy {
      align-items: center;
    }
  }















:root{
  --tbl-bg: rgba(255,255,255,.03);
  --tbl-bg-2: rgba(255,255,255,.02);
  --tbl-head: rgba(255,255,255,.06);
  --tbl-border: rgba(255,255,255,.12);
  --tbl-border-soft: rgba(255,255,255,.08);
  --tbl-text: rgba(255,255,255,.9);
  --tbl-text-dim: rgba(255,255,255,.72);
  --tbl-accent: rgba(99,102,241,.9);
  --tbl-radius: 14px;
  --tbl-pad-y: 12px;
  --tbl-pad-x: 14px;
}

table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  border: 1px solid var(--tbl-border);
  border-radius: var(--tbl-radius);
  overflow: hidden;
  color: var(--tbl-text);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}

caption{
  caption-side: top;
  padding: 12px 14px;
  color: var(--tbl-text-dim);
  font-weight: 600;
  text-align: left;
}

thead th{
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.05));
  color: var(--tbl-text);
  font-weight: 700;
  letter-spacing: .2px;
  text-transform: none;
  border-bottom: 1px solid var(--tbl-border);
}

th, td{
  padding: var(--tbl-pad-y) var(--tbl-pad-x);
  text-align: left;
  vertical-align: middle;
  border-right: 1px solid var(--tbl-border-soft);
}

th:last-child, td:last-child{
  border-right: 0;
}

tbody td{
  border-bottom: 1px solid var(--tbl-border-soft);
  color: var(--tbl-text);
}

tbody tr:nth-child(even){
  background: var(--tbl-bg);
}

tbody tr:nth-child(odd){
  background: var(--tbl-bg-2);
}

tbody tr:hover{
  background: rgba(99,102,241,.10);
}

tbody tr:hover td{
  border-bottom-color: rgba(99,102,241,.22);
}

tbody tr:last-child td{
  border-bottom: 0;
}

tbody td:first-child,
thead th:first-child{
  padding-left: calc(var(--tbl-pad-x) + 2px);
}

tbody td:last-child,
thead th:last-child{
  padding-right: calc(var(--tbl-pad-x) + 2px);
}

table a{
  color: rgba(165,180,252,.95);
  text-decoration: none;
}

table a:hover{
  color: rgba(199,210,254,.98);
  text-decoration: underline;
}

@media (max-width: 820px){
  table{
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  th, td{
    white-space: nowrap;
  }
}
