/* === STARTSEITE GLOBAL === */
.top-box-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.home-load-error {
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 99, 132, 0.38);
  border-radius: 10px;
  background: rgba(128, 24, 35, 0.3);
  color: #ffe0e4;
}

.top-box {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  background: #1e1e1e;
  border: 1px solid #333;
  padding: 12px;
  border-radius: 10px;
  box-sizing: border-box;
}

.top-box h3 {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 16px;
  color: #fff;
}

.top-box__tabs {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* === GAINER/LOSER BUTTONS === */
#filterGainers,
#filterLosers {
  background: none;
  border: 1px solid #555;
  color: #aaa;
  padding: 4px 8px;
  border-radius: 6px;
  margin-left: 5px;
  cursor: pointer;
  font-size: 13px;
}

#filterGainers.active,
#filterLosers.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* === TOKEN-BOX-GRID === */
.token-box-grid {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;

}

.view-more-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  justify-content: center;
  min-height: 34px;
  margin-top: 12px;
  padding: 7px 10px;
  border: 1px solid #46515f;
  border-radius: 7px;
  background: #272d35;
  color: #f3f6fa;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.view-more-link::after {
  content: "\2192";
  margin-left: 7px;
  color: #ff9138;
  font-size: 15px;
  line-height: 1;
}

.view-more-link--feed::after {
  content: "\2198";
}

.view-more-link--header {
  flex: 0 0 auto;
  align-self: auto;
  min-height: 30px;
  margin-top: 0;
  padding: 6px 9px;
}

.view-more-link:hover,
.view-more-link:focus-visible {
  border-color: #ff9138;
  background: #313944;
  color: #fff;
  transform: translateY(-1px);
}

.view-more-link:focus-visible {
  outline: 2px solid rgba(255, 145, 56, 0.45);
  outline-offset: 2px;
}

.token-box-grid--pairs {
  gap: 12px;
}

.token-card {
  display: flex;
  justify-content: space-between;
  align-items: left;
  background: rgba(255,255,255,0.03);
  border: 1px solid #444;
  border-radius: 10px;
  padding: 8px 12px;
}

.token-card-left {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.logo-wrapper {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.token-logo-small {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.chain-overlay-small {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #333;
  background: #000;
  z-index: 2;
}

.token-card .symbol {
  font-weight: bold;
  color: #fff;
  font-size: 14px;
align-items: left;

}

.token-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.token-card .price {
  color: #ccc;
  font-size: 14px;
}

.token-card .change {
  font-size: 13px;
}

.token-card .change.up {
  color: #3dc57b;
}

.token-card .change.down {
  color: #e74c3c;
}

.pair-card-mobile-head,
.pair-card-mobile-stats {
  display: none;
}

.new-pair-card {
  display: block;
  padding: 12px;
  border: 1px solid #29435b;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(18, 27, 38, 0.95), rgba(12, 17, 25, 0.98));
  text-decoration: none;
  color: #eef5ff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.new-pair-card:hover {
  border-color: #35c0ff;
  box-shadow: 0 10px 24px rgba(53, 192, 255, 0.16);
  transform: translateY(-1px);
}

.new-pair-card__header,
.new-pair-card__meta,
.new-pair-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.new-pair-card__header {
  align-items: flex-start;
  min-width: 0;
}

.new-pair-card__titles {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.new-pair-card__titles strong {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.new-pair-card__titles span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.new-pair-card__titles span,
.new-pair-card__meta,
.new-pair-card__footer {
  color: #9db0c6;
  font-size: 12px;
}

.new-pair-card__meta,
.new-pair-card__footer {
  margin-top: 10px;
  flex-wrap: wrap;
}

.new-pair-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #ffd08a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  flex: 0 0 auto;
}

.new-pair-card--flash {
  border-color: #f59e0b;
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.45), 0 0 28px rgba(245, 158, 11, 0.22);
  animation: newPairGlow 1.8s ease-out 1;
}

.table-row--new-pair {
  position: relative;
  border: 1px solid rgba(245, 158, 11, 0.86);
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.3), 0 0 20px rgba(245, 158, 11, 0.2);
  animation: newPairRowBlink 1.45s ease-in-out infinite;
}

.table-row--new-pair::before {
  content: "NEW";
  position: absolute;
  top: -8px;
  left: 10px;
  z-index: 2;
  padding: 2px 7px;
  border-radius: 999px;
  background: #f59e0b;
  color: #111827;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

@keyframes newPairRowBlink {
  0%, 100% {
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.16), 0 0 8px rgba(245, 158, 11, 0.1);
  }
  50% {
    border-color: rgba(245, 158, 11, 1);
    box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.65), 0 0 26px rgba(245, 158, 11, 0.34);
  }
}

@keyframes newPairGlow {
  0% {
    box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.65), 0 0 36px rgba(245, 158, 11, 0.35);
  }
  100% {
    box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.12), 0 0 0 rgba(245, 158, 11, 0);
  }
}
.token-logo-tiny {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
}

.chain-overlay-tiny {
  width: 12px;
  height: 12px;
  position: relative;
  left: -10px;
  top: -6px;
}

.pagination-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  align-items: center;
}

.pagination-controls button {
  background: #2c2c2c;
  color: white;
  border: 1px solid #444;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.pagination-controls button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.hidden {
  display: none !important;
}

.page-info {
  font-size: 12px;
  color: #aaa;
}

.all-pairs-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.all-pairs-heading h1 {
  margin: 0;
  font-size: 18px;
}

.all-pairs-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.all-pairs-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  scrollbar-width: thin;
}

.all-pairs-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.all-pairs-tab {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid #374151;
  border-radius: 999px;
  background: #141b24;
  color: #c9d2df;
  cursor: pointer;
}

.all-pairs-tab.active {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
  color: #fff4de;
}

.token-countdown {
  color: #ffd36a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.all-pairs-filter {
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid #28435a;
  border-radius: 999px;
  background: #101923;
  color: #b8c7d9;
  cursor: pointer;
}

.all-pairs-filter.active {
  border-color: #35c0ff;
  background: rgba(53, 192, 255, 0.14);
  color: #eef9ff;
}

.table-empty-state {
  padding: 18px 14px;
  border: 1px solid #2b2b2b;
  border-radius: 10px;
  background: #121212;
  color: #9aa3b2;
  text-align: center;
}

#allPairsTable {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;
  border-radius: 10px;
  max-width: 100%;
}

.pair-table {
  width: 100%;
  overflow: hidden;
}

.table-row,
.table-header {
  display: grid;
  grid-template-columns:
    52px
    minmax(90px, 1.1fr)
    minmax(60px, 0.65fr)
    minmax(90px, 1fr)
    78px
    minmax(82px, 0.9fr)
    minmax(76px, 0.78fr)
    minmax(88px, 0.9fr)
    minmax(88px, 0.9fr)
    78px
    minmax(70px, 0.72fr)
    48px
    minmax(128px, 1.2fr);

  align-items: flex-start;
  text-align: left;
  gap: 8px;
  padding: 6px 10px;
  font-weight: bold;
  color: #fff;
  border-bottom: 1px solid #444;
  background-color: #121212;

}

.table-score-heading,
.table-score-col {
  justify-content: center;
  text-align: center;
}

.table-score-heading {
  white-space: normal;
}

.table-score-ring {
  --table-score: 0;
  --table-score-color: #ef5350;
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  background: conic-gradient(
    var(--table-score-color) calc(var(--table-score) * 1%),
    rgba(111, 123, 142, 0.24) 0
  );
}

.table-score-ring::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #121212;
}

.table-score-ring strong {
  position: relative;
  z-index: 1;
  color: #f5f7fb;
  font-size: 7px;
  line-height: 1;
}

.table-score-ring--warning {
  --table-score-color: #f0b43c;
}

.table-score-ring--healthy {
  --table-score-color: #37d67a;
}



/*.table-row {
  display: grid;
  grid-template-columns:
    2.1%   /* 30px  */
/*    10.3%  /* 110px */
/*    7.2%   /* 70px  */
/*    11.4%  /* 130px */
/*    10.3%  /* 100px */
/*    8.2%   /* 80px  */
/*    9.3%   /* 90px  */
/*    9.3%   /* 90px  */
/*    8.2%   /* 80px  */
/*    4.1%   /* 40px  */
/*    14.4%; /* 140px */
/*  align-items: left;
  text-align: left;
  gap: 10px;
  padding: 6px 10px;
  background-color: #1a1a1a;
  border-bottom: 1px solid #333;
  transition: background-color 0.2s ease;
max-width: 100%;

}*/

.table-row:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}

.table-row img.token-logo-tiny {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.table-row img.chain-overlay-table {
  position: absolute;
  bottom: 7px;
  right: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  object-fit: contain;
  background: #000;
  z-index: 2;
}

.token-col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-wrapper {
  position: relative;
  width: 28px;
  height: 28px;
}

.token-logo-tiny {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.chain-overlay-table {
  position: absolute;
  bottom: 7px;
  right: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000;
}

.col {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
}

.pair-col {
  flex-direction: column;
  gap: 4px;
}

.pair-symbols {
  font-weight: 600;
  color: #fff;
}

.pair-contract-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #7f8794;
}

.pair-contract {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.pair-copy-icon {
  cursor: pointer;
  height: 12px;
  opacity: 0.75;
}

.pair-copy-icon:hover {
  opacity: 1;
}

.token-row-link {
  display: contents; /* wichtig! damit hover + grid korrekt funktionieren */
  text-decoration: none;
  color: inherit;
}

.favorite-toggle,
.votes {
  display: flex;
  align-items: left;
  justify-content: left;
}

.fav-icon {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.table-row .up {
  color: #3dc57b; /* Grün */
  font-weight: 500;
}

.table-row .down {
  color: #e74c3c; /* Rot */
  font-weight: 500;
}

.table-row .neutral {
  color: #42aaff; /* Blau */
  font-weight: 500;
}




.favorite-toggle, .votes {
  display: flex;
  align-items: left;
  padding: 0 6px;
  gap: 6px;
}

.fav-count {
  color: #d0d7e2;
  font-size: 12px;
}

.vote-up,
.vote-down {
  border: 1px solid #384151;
  background: #1a2230;
  color: #fff;
  border-radius: 6px;
  padding: 4px 7px;
  cursor: pointer;
}

.vote-up:hover,
.vote-down:hover {
  background: #243248;
}

.copy-confirm {
  color: #37d67a;
  font-size: 11px;
  font-weight: 600;
}
.vote-count.positive {
  color: #00c853; /* Grün */
  font-weight: bold;
}

.vote-count.negative {
  color: #d50000; /* Rot */
  font-weight: bold;
}

.vote-count.neutral {
  color: #888;
}

.pair-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #37506a;
  background: rgba(21, 31, 43, 0.92);
  color: #d8e4f2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pair-chip--dex {
  border-color: rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.12);
  color: #ffd79a;
}
.pair-chip--pool {
  border-color: rgba(53, 192, 255, 0.45);
  background: rgba(53, 192, 255, 0.1);
  color: #a9e5ff;
}
.token-name-col,
.pair-dex-details {
  flex-direction: column;
  gap: 3px;
}
.token-contract-inline,
.pair-dex-details small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #7f8da0;
  font-size: 10px;
}
.contract-line {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #aaa;
  margin-top: 2px;
}


.token-card-link:hover {
  background-color: #1f1f1f;
  transition: background 0.2s ease;
}

.token-card {
  display: flex;
  justify-content: space-between;
  align-items: left;
  background: #1a1a1a;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid #333;
  color: white;
}

.copy-icon {
  width: 14px;
  height: 14px;
  margin-left: 6px;
  cursor: pointer;
  opacity: 0.7;
  vertical-align: middle;
}
.copy-icon:hover {
  opacity: 1;
}

.copy-checkmark {
  margin-left: 6px;
  color: #00cc66; /* Grün */
  font-size: 13px;
  font-weight: bold;
  vertical-align: middle;
  transition: opacity 0.3s ease;
}

.rug-warning {
  color: #ff4444;
  font-weight: bold;
  font-size: 12px;
}


@media (max-width: 768px) {
  .top-box-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
  }

  .top-box--new-pairs {
    order: 1;
  }

  .top-box--votes {
    order: 2;
  }

  .top-box--gainers-losers {
    order: 3;
  }

  .all-pairs-section {
    overflow: hidden;
  }

  .all-pairs-section h1 {
    margin-top: 12px;
    text-align: left;
  }

  .all-pairs-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
    margin-inline: -2px;
    padding-inline: 2px;
  }

  .all-pairs-toolbar {
    align-items: stretch;
  }

  .all-pairs-filters {
    width: 100%;
  }

  .top-box {
    min-width: 0;
    width: 100%;
  }

  .token-box-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .token-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px;
  }

  .new-pair-card__header,
  .new-pair-card__meta,
  .new-pair-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .token-card-right {
    width: 100%;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
  }

  .table-header {
    display: none;
  }

  .pair-table {
    width: 100%;
  }

  .table-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 12px;
    border: 1px solid #2b2b2b;
    border-radius: 12px;
    background: linear-gradient(180deg, #14171d 0%, #101216 100%);
  }

  .table-row:hover {
    border-radius: 12px;
  }

  .pair-card-mobile-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }

  .pair-card-mobile-head__identity {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }

  .pair-card-mobile-head__copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
  }

  .pair-card-mobile-head__copy strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
  }

  .pair-card-mobile-head__copy span {
    color: #aeb8c6;
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .pair-card-mobile-contract {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    color: #7f8da0;
  }

  .pair-card-mobile-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
  }

  .pair-card-mobile-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .pair-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    padding: 10px;
    border: 1px solid #273241;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
  }

  .pair-stat span {
    color: #8f98a8;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .pair-stat strong {
    color: #fff;
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .pair-stat--score {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .pair-stat--score .table-score-ring {
    flex: 0 0 20px;
  }

  .pair-stat--up strong {
    color: #3dc57b;
  }

  .pair-stat--down strong {
    color: #e74c3c;
  }

  .pair-stat--neutral strong {
    color: #42aaff;
  }

  .table-row .col,
  .table-row .favorite-toggle,
  .table-row .votes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 6px 0;
    border-top: 1px solid #2a2a2a;
    text-align: left;
    white-space: normal;
    overflow: visible;
    gap: 10px;
  }

  .table-row .token-col,
  .table-row .pair-col,
  .table-row .col[data-label="Symbol"],
  .table-row .col[data-label="Name"],
  .table-row .col[data-label="Audit"],
  .table-row .col[data-label="Price"],
  .table-row .col[data-label="24h Change"],
  .table-row .col[data-label="24h Volume"],
  .table-row .col[data-label="Liquidity"],
  .table-row .col[data-label="Pair Health"],
  .table-row .col[data-label="DEX"] {
    display: none;
  }

  .table-row .token-row-link .col {
    border-top: 0;
  }

  .table-row .token-row-link {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .table-row .col:before,
  .table-row .favorite-toggle:before,
  .table-row .votes:before {
    content: attr(data-label);
    color: #8f98a8;
    font-size: 11px;
    flex: 0 0 30%;
  }

  .table-row .col > div,
  .table-row .col a,
  .table-row .col span,
  .table-row .col button {
    width: 68%;
    justify-content: flex-end;
    text-align: right;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .table-row .pair-col > div {
    width: 68%;
    text-align: right;
  }

  .table-row .pair-contract-row {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .table-row .token-col:before {
    display: none;
  }

  .table-row .token-col {
    justify-content: flex-start;
    padding-top: 0;
  }

  .table-row .token-col .logo-wrapper {
    width: 34px;
    height: 34px;
  }

  .favorite-toggle,
  .votes {
    justify-content: flex-end;
  }

  .favorite-toggle {
    padding-top: 10px;
  }

  .votes {
    padding-bottom: 2px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .favorite-toggle:before,
  .votes:before {
    flex: 0 0 30%;
  }

  .fav-icon {
    width: 24px;
    height: 24px;
  }

  .vote-up,
  .vote-down {
    min-width: 42px;
    min-height: 40px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 16px;
  }

  .vote-count {
    min-width: 54px;
    text-align: right;
  }

}

@media (min-width: 769px) and (max-width: 1024px) {
  .top-box-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .top-box--new-pairs {
    grid-column: 1 / -1;
  }
}

@media (min-width: 769px) {
  .table-row {
    display: grid;
  }

  .table-header {
    display: grid;
  }
}

html[dir="rtl"] .table-header,
html[dir="rtl"] .table-row,
html[dir="rtl"] .token-card,
html[dir="rtl"] .pair-contract-row,
html[dir="rtl"] .pagination-controls {
  direction: rtl;
  text-align: right;
}
