.tweet-container_root__Z0YS2 {
  width: 100%;
  min-width: 250px;
  max-width: 550px;
  overflow: hidden;
  /* Base font styles */
  color: var(--tweet-font-color);
  font-family: var(--tweet-font-family);
  font-weight: 400;
  box-sizing: border-box;
  border: var(--tweet-border);
  border-radius: 12px;
  margin: var(--tweet-container-margin);
  background-color: var(--tweet-bg-color);
  transition-property: background-color, box-shadow;
  transition-duration: 0.2s;
}
.tweet-container_root__Z0YS2:hover {
  background-color: var(--tweet-bg-color-hover);
}
.tweet-container_article__0s7S3 {
  position: relative;
  box-sizing: inherit;
  padding: 0.75rem 1rem;
}

.react-tweet-theme {
  --tweet-container-margin: 1.5rem 0;

  /* Header */
  --tweet-header-font-size: 0.9375rem;
  --tweet-header-line-height: 1.25rem;

  /* Text */
  --tweet-body-font-size: 1.25rem;
  --tweet-body-font-weight: 400;
  --tweet-body-line-height: 1.5rem;
  --tweet-body-margin: 0;

  /* Quoted Tweet */
  --tweet-quoted-container-margin: 0.75rem 0;
  --tweet-quoted-body-font-size: 0.938rem;
  --tweet-quoted-body-font-weight: 400;
  --tweet-quoted-body-line-height: 1.25rem;
  --tweet-quoted-body-margin: 0.25rem 0 0.75rem 0;

  /* Info */
  --tweet-info-font-size: 0.9375rem;
  --tweet-info-line-height: 1.25rem;

  /* Actions like the like, reply and copy buttons */
  --tweet-actions-font-size: 0.875rem;
  --tweet-actions-line-height: 1rem;
  --tweet-actions-font-weight: 700;
  --tweet-actions-icon-size: 1.25em;
  --tweet-actions-icon-wrapper-size: calc(
    var(--tweet-actions-icon-size) + 0.75em
  );

  /* Reply button */
  --tweet-replies-font-size: 0.875rem;
  --tweet-replies-line-height: 1rem;
  --tweet-replies-font-weight: 700;
}

:where(.react-tweet-theme) * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:is([data-theme='light'], .light) :where(.react-tweet-theme),
:where(.react-tweet-theme) {
  --tweet-skeleton-gradient: linear-gradient(
    270deg,
    #fafafa,
    #eaeaea,
    #eaeaea,
    #fafafa
  );
  --tweet-border: 1px solid rgb(207, 217, 222);
  --tweet-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
  --tweet-font-color: rgb(15, 20, 25);
  --tweet-font-color-secondary: rgb(83, 100, 113);
  --tweet-bg-color: #fff;
  --tweet-bg-color-hover: rgb(247, 249, 249);
  --tweet-quoted-bg-color-hover: rgba(0, 0, 0, 0.03);
  --tweet-color-blue-primary: rgb(29, 155, 240);
  --tweet-color-blue-primary-hover: rgb(26, 140, 216);
  --tweet-color-blue-secondary: rgb(0, 111, 214);
  --tweet-color-blue-secondary-hover: rgba(0, 111, 214, 0.1);
  --tweet-color-red-primary: rgb(249, 24, 128);
  --tweet-color-red-primary-hover: rgba(249, 24, 128, 0.1);
  --tweet-color-green-primary: rgb(0, 186, 124);
  --tweet-color-green-primary-hover: rgba(0, 186, 124, 0.1);
  --tweet-twitter-icon-color: var(--tweet-font-color);
  --tweet-verified-old-color: rgb(130, 154, 171);
  --tweet-verified-blue-color: var(--tweet-color-blue-primary);
}

:is([data-theme='dark'], .dark) :where(.react-tweet-theme) {
  --tweet-skeleton-gradient: linear-gradient(
    270deg,
    #15202b,
    rgb(30, 39, 50),
    rgb(30, 39, 50),
    rgb(21, 32, 43)
  );
  --tweet-border: 1px solid rgb(66, 83, 100);
  --tweet-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
  --tweet-font-color: rgb(247, 249, 249);
  --tweet-font-color-secondary: rgb(139, 152, 165);
  --tweet-bg-color: rgb(21, 32, 43);
  --tweet-bg-color-hover: rgb(30, 39, 50);
  --tweet-quoted-bg-color-hover: rgba(255, 255, 255, 0.03);
  --tweet-color-blue-primary: rgb(29, 155, 240);
  --tweet-color-blue-primary-hover: rgb(26, 140, 216);
  --tweet-color-blue-secondary: rgb(107, 201, 251);
  --tweet-color-blue-secondary-hover: rgba(107, 201, 251, 0.1);
  --tweet-color-red-primary: rgb(249, 24, 128);
  --tweet-color-red-primary-hover: rgba(249, 24, 128, 0.1);
  --tweet-color-green-primary: rgb(0, 186, 124);
  --tweet-color-green-primary-hover: rgba(0, 186, 124, 0.1);
  --tweet-twitter-icon-color: var(--tweet-font-color);
  --tweet-verified-old-color: rgb(130, 154, 171);
  --tweet-verified-blue-color: #fff;
}

@media (prefers-color-scheme: dark) {
  :where(.react-tweet-theme) {
    --tweet-skeleton-gradient: linear-gradient(
      270deg,
      #15202b,
      rgb(30, 39, 50),
      rgb(30, 39, 50),
      rgb(21, 32, 43)
    );
    --tweet-border: 1px solid rgb(66, 83, 100);
    --tweet-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
      Helvetica, Arial, sans-serif;
    --tweet-font-color: rgb(247, 249, 249);
    --tweet-font-color-secondary: rgb(139, 152, 165);
    --tweet-bg-color: rgb(21, 32, 43);
    --tweet-bg-color-hover: rgb(30, 39, 50);
    --tweet-color-blue-primary: rgb(29, 155, 240);
    --tweet-color-blue-primary-hover: rgb(26, 140, 216);
    --tweet-color-blue-secondary: rgb(107, 201, 251);
    --tweet-color-blue-secondary-hover: rgba(107, 201, 251, 0.1);
    --tweet-color-red-primary: rgb(249, 24, 128);
    --tweet-color-red-primary-hover: rgba(249, 24, 128, 0.1);
    --tweet-color-green-primary: rgb(0, 186, 124);
    --tweet-color-green-primary-hover: rgba(0, 186, 124, 0.1);
    --tweet-twitter-icon-color: var(--tweet-font-color);
    --tweet-verified-old-color: rgb(130, 154, 171);
    --tweet-verified-blue-color: #fff;
  }
}

.tweet-header_header__aL4cv {
  display: flex;
  padding-bottom: 0.75rem;
  line-height: var(--tweet-header-line-height);
  font-size: var(--tweet-header-font-size);
  white-space: nowrap;
  overflow-wrap: break-word;
  overflow: hidden;
}

.tweet-header_avatar___sFJJ {
  position: relative;
  height: 48px;
  width: 48px;
}
.tweet-header_avatarOverflow__9xy_s {
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden;
  border-radius: 9999px;
}
.tweet-header_avatarSquare__HzS2u {
  border-radius: 4px;
}
.tweet-header_avatarShadow__S4Voo {
  height: 100%;
  width: 100%;
  transition-property: background-color;
  transition-duration: 0.2s;
  box-shadow: rgb(0 0 0 / 3%) 0px 0px 2px inset;
}
.tweet-header_avatarShadow__S4Voo:hover {
  background-color: rgba(26, 26, 26, 0.15);
}

.tweet-header_author__wZ3HI {
  max-width: calc(100% - 84px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 0.5rem;
}
.tweet-header_authorLink__fgyxn {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}
.tweet-header_authorLink__fgyxn:hover {
  text-decoration-line: underline;
}
.tweet-header_authorVerified__jItXf {
  display: inline-flex;
}
.tweet-header_authorLinkText__pgCH2 {
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.tweet-header_authorMeta__FWnWz {
  display: flex;
}
.tweet-header_authorFollow__t5q2N {
  display: flex;
}
.tweet-header_username__cWiwg {
  color: var(--tweet-font-color-secondary);
  text-decoration: none;
  text-overflow: ellipsis;
}
.tweet-header_follow__1bzYa {
  color: var(--tweet-color-blue-secondary);
  text-decoration: none;
  font-weight: 700;
}
.tweet-header_follow__1bzYa:hover {
  text-decoration-line: underline;
}
.tweet-header_separator__v3qQ5 {
  padding: 0 0.25rem;
}

.tweet-header_brand__jDWHF {
  margin-inline-start: auto;
}

.tweet-header_twitterIcon__nAvX_ {
  width: 23.75px;
  height: 23.75px;
  color: var(--tweet-twitter-icon-color);
  fill: currentColor;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.verified-badge_verifiedOld__6yY7r {
  color: var(--tweet-verified-old-color);
}
.verified-badge_verifiedBlue__5B3NN {
  color: var(--tweet-verified-blue-color);
}
.verified-badge_verifiedGovernment__tnRT_ {
  /* color: var(--tweet-verified-government-color); */
  color: rgb(130, 154, 171);
}

.icons_verified__k8SX0 {
  margin-left: 0.125rem;
  max-width: 20px;
  max-height: 20px;
  height: 1.25em;
  fill: currentColor;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  vertical-align: text-bottom;
}

.tweet-in-reply-to_root__u3nkg {
  text-decoration: none;
  color: var(--tweet-font-color-secondary);
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-bottom: 0.25rem;
  overflow-wrap: break-word;
  white-space: pre-wrap;
}
.tweet-in-reply-to_root__u3nkg:hover {
  text-decoration-thickness: 1px;
  text-decoration-line: underline;
}

.tweet-link_root__20gRx {
  font-weight: inherit;
  color: var(--tweet-color-blue-secondary);
  text-decoration: none;
  cursor: pointer;
}
.tweet-link_root__20gRx:hover {
  text-decoration-thickness: 1px;
  text-decoration-line: underline;
}

.tweet-body_root__xs5mn {
  font-size: var(--tweet-body-font-size);
  font-weight: var(--tweet-body-font-weight);
  line-height: var(--tweet-body-line-height);
  margin: var(--tweet-body-margin);
  overflow-wrap: break-word;
  white-space: pre-wrap;
}

.tweet-media_root__QNpSj {
  margin-top: 0.75rem;
  overflow: hidden;
  position: relative;
}
.tweet-media_rounded__DAVeI {
  border: var(--tweet-border);
  border-radius: 12px;
}
.tweet-media_mediaWrapper__dqmct {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 2px;
  height: 100%;
  width: 100%;
}
.tweet-media_grid2Columns__yM_Px {
  grid-template-columns: repeat(2, 1fr);
}
.tweet-media_grid3__GFwzd > a:first-child {
  grid-row: span 2;
}
.tweet-media_grid2x2__dxvAn {
  grid-template-rows: repeat(2, 1fr);
}
.tweet-media_mediaContainer__ApM93 {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tweet-media_mediaLink__nskij {
  text-decoration: none;
  outline-style: none;
}
.tweet-media_skeleton__AVKrY {
  padding-bottom: 56.25%;
  width: 100%;
  display: block;
}
.tweet-media_image__wYRKJ {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  height: 100%;
  width: 100%;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.tweet-media-video_anchor__t7YPw {
  display: flex;
  align-items: center;
  color: white;
  padding: 0 1rem;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-weight: 700;
  transition: background-color 0.2s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  outline-style: none;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tweet-media-video_videoButton__7iIeF {
  position: relative;
  height: 67px;
  width: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tweet-color-blue-primary);
  transition-property: background-color;
  transition-duration: 0.2s;
  border: 4px solid #fff;
  border-radius: 9999px;
  cursor: pointer;
}
.tweet-media-video_videoButton__7iIeF:hover,
.tweet-media-video_videoButton__7iIeF:focus-visible {
  background-color: var(--tweet-color-blue-primary-hover);
}
.tweet-media-video_videoButtonIcon__s9SH_ {
  margin-left: 3px;
  width: calc(50% + 4px);
  height: calc(50% + 4px);
  max-width: 100%;
  color: #fff;
  fill: currentColor;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.tweet-media-video_watchOnTwitter__I7NVZ {
  position: absolute;
  top: 12px;
  right: 8px;
}
.tweet-media-video_watchOnTwitter__I7NVZ > a {
  min-width: 2rem;
  min-height: 2rem;
  font-size: 0.875rem;
  line-height: 1rem;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background-color: rgba(15, 20, 25, 0.75);
}
.tweet-media-video_watchOnTwitter__I7NVZ > a:hover {
  background-color: rgba(39, 44, 48, 0.75);
}
.tweet-media-video_viewReplies__gZw79 {
  position: relative;
  min-height: 2rem;
  background-color: var(--tweet-color-blue-primary);
  border-color: var(--tweet-color-blue-primary);
  font-size: 0.9375rem;
  line-height: 1.25rem;
}
.tweet-media-video_viewReplies__gZw79:hover {
  background-color: var(--tweet-color-blue-primary-hover);
}

.quoted-tweet-container_root__qbSTP {
  width: 100%;
  overflow: hidden;
  border: var(--tweet-border);
  border-radius: 12px;
  margin: var(--tweet-quoted-container-margin);
  transition-property: background-color, box-shadow;
  transition-duration: 0.2s;
  cursor: pointer;
}

.quoted-tweet-container_root__qbSTP:hover {
  background-color: var(--tweet-quoted-bg-color-hover);
}

.quoted-tweet-container_article__8vmJv {
  position: relative;
  box-sizing: inherit;
}

.quoted-tweet-header_header__erR0a {
  display: flex;
  padding: 0.75rem 0.75rem 0 0.75rem;
  line-height: var(--tweet-header-line-height);
  font-size: var(--tweet-header-font-size);
  white-space: nowrap;
  overflow-wrap: break-word;
  overflow: hidden;
}

.quoted-tweet-header_avatar__0pfZj {
  position: relative;
  height: 20px;
  width: 20px;
}

.quoted-tweet-header_avatarSquare__nnbRW {
  border-radius: 4px;
}

.quoted-tweet-header_author__bA5Mi {
  display: flex;
  margin: 0 0.5rem;
}

.quoted-tweet-header_authorText___Y3rY {
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.quoted-tweet-header_username__yVVTm {
  color: var(--tweet-font-color-secondary);
  text-decoration: none;
  text-overflow: ellipsis;
  margin-left: 0.125rem;
}

.quoted-tweet-body_root__V66vS {
  font-size: var(--tweet-quoted-body-font-size);
  font-weight: var(--tweet-quoted-body-font-weight);
  line-height: var(--tweet-quoted-body-line-height);
  margin: var(--tweet-quoted-body-margin);
  overflow-wrap: break-word;
  white-space: pre-wrap;
  padding: 0 0.75rem;
}

.tweet-info-created-at_root__b7xSc {
  color: inherit;
  text-decoration: none;
  font-size: var(--tweet-info-font-size);
  line-height: var(--tweet-info-line-height);
}
.tweet-info-created-at_root__b7xSc:hover {
  text-decoration-thickness: 1px;
  text-decoration-line: underline;
}

.tweet-info_info___BVSm {
  display: flex;
  align-items: center;
  color: var(--tweet-font-color-secondary);
  margin-top: 0.125rem;
  overflow-wrap: break-word;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tweet-info_infoLink__yt2UW {
  color: inherit;
  text-decoration: none;
  height: var(--tweet-actions-icon-wrapper-size);
  width: var(--tweet-actions-icon-wrapper-size);
  font: inherit;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: -4px;
  border-radius: 9999px;
  transition-property: background-color;
  transition-duration: 0.2s;
}
.tweet-info_infoLink__yt2UW:hover {
  background-color: var(--tweet-color-blue-secondary-hover);
}
.tweet-info_infoIcon__vXvs8 {
  color: inherit;
  fill: currentColor;
  height: var(--tweet-actions-icon-size);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.tweet-info_infoLink__yt2UW:hover > .tweet-info_infoIcon__vXvs8 {
  color: var(--tweet-color-blue-secondary);
}

.tweet-actions_actions__MERq9 {
  display: flex;
  align-items: center;
  color: var(--tweet-font-color-secondary);
  padding-top: 0.25rem;
  margin-top: 0.25rem;
  border-top: var(--tweet-border);
  overflow-wrap: break-word;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tweet-actions_like__T01uo,
.tweet-actions_reply___OS7G,
.tweet-actions_copy__8L7Ru {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  margin-right: 1.25rem;
}
.tweet-actions_like__T01uo:hover,
.tweet-actions_reply___OS7G:hover,
.tweet-actions_copy__8L7Ru:hover {
  background-color: rgba(0, 0, 0, 0);
}
.tweet-actions_like__T01uo:hover > .tweet-actions_likeIconWrapper__8oZdC {
  background-color: var(--tweet-color-red-primary-hover);
}
.tweet-actions_like__T01uo:hover > .tweet-actions_likeCount__Ttict {
  color: var(--tweet-color-red-primary);
  text-decoration-line: underline;
}
.tweet-actions_likeIconWrapper__8oZdC,
.tweet-actions_replyIconWrapper__Jq0oy,
.tweet-actions_copyIconWrapper__5wW_v {
  width: var(--tweet-actions-icon-wrapper-size);
  height: var(--tweet-actions-icon-wrapper-size);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -0.25rem;
  border-radius: 9999px;
}
.tweet-actions_likeIcon__I6_JZ,
.tweet-actions_replyIcon__qDDqZ,
.tweet-actions_copyIcon__fF6V_ {
  height: var(--tweet-actions-icon-size);
  fill: currentColor;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.tweet-actions_likeIcon__I6_JZ {
  color: var(--tweet-color-red-primary);
}
.tweet-actions_likeCount__Ttict,
.tweet-actions_replyText__rUuHF,
.tweet-actions_copyText__CTy2J {
  font-size: var(--tweet-actions-font-size);
  font-weight: var(--tweet-actions-font-weight);
  line-height: var(--tweet-actions-line-height);
  margin-left: 0.25rem;
}

.tweet-actions_reply___OS7G:hover > .tweet-actions_replyIconWrapper__Jq0oy {
  background-color: var(--tweet-color-blue-secondary-hover);
}
.tweet-actions_reply___OS7G:hover > .tweet-actions_replyText__rUuHF {
  color: var(--tweet-color-blue-secondary);
  text-decoration-line: underline;
}
.tweet-actions_replyIcon__qDDqZ {
  color: var(--tweet-color-blue-primary);
}

.tweet-actions_copy__8L7Ru {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
.tweet-actions_copy__8L7Ru:hover > .tweet-actions_copyIconWrapper__5wW_v {
  background-color: var(--tweet-color-green-primary-hover);
}
.tweet-actions_copy__8L7Ru:hover .tweet-actions_copyIcon__fF6V_ {
  color: var(--tweet-color-green-primary);
}
.tweet-actions_copy__8L7Ru:hover > .tweet-actions_copyText__CTy2J {
  color: var(--tweet-color-green-primary);
  text-decoration-line: underline;
}

.tweet-replies_replies__zFz4z {
  padding: 0.25rem 0;
}
.tweet-replies_link__AdA3_ {
  text-decoration: none;
  color: var(--tweet-color-blue-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  outline-style: none;
  transition-property: background-color;
  transition-duration: 0.2s;
  padding: 0 1rem;
  border: var(--tweet-border);
  border-radius: 9999px;
}
.tweet-replies_link__AdA3_:hover {
  background-color: var(--tweet-color-blue-secondary-hover);
}
.tweet-replies_text__m9IsY {
  font-weight: var(--tweet-replies-font-weight);
  font-size: var(--tweet-replies-font-size);
  line-height: var(--tweet-replies-line-height);
  overflow-wrap: break-word;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@keyframes TokenTable_flash-bg__PJgsP {
  from {
    background-color: #202d2d;
  }
  to {
    background-color: #0e131e;
  }
}

.TokenTable_flashBg__SbIfk {
  animation: TokenTable_flash-bg__PJgsP 1s ease-out;
}

.TokenTable_table__aNtap {
  /* watchlist+icon+age+gap+socials(5)+pr */
  /* (8+16+4)+40+30+4+(12*5+5*4)+4 */
  --token-width: 11.625rem;
  /* With ctlikes, +4+50 */
  --token-ctlikes-width: 13.625rem;
  --quickbuy-width: 2.25rem;

  --price-width: minmax(6.5rem, 1fr);
  --mcap-width: minmax(6.5rem, 1fr);
  --vol-width: minmax(6.5rem, 1fr);
  --txns-width: minmax(6.5rem, 1fr);
  --traders-width: 100px;
  --liq-width: minmax(4.7rem, 1fr);
  --holders-width: minmax(3.8rem, 1fr);
  --ctlikes-width: minmax(4.7rem, 1fr);
  --organic-score-width: 6rem;
  --organic-vol-width: minmax(6.5rem, 1fr);
  --checklist-width: minmax(4.7rem, 1fr);
}

/* lg */
@media (min-width: 1024px) {
  .TokenTable_table__aNtap {
    /* watchlist+icon+age+gap+socials(5)+pr */
    /* (16+16+4)+40+30+6+(12*5+5*4)+16 */
    --token-width: 13rem;
    /* No organic score, +4+50 */
    --token-ctlikes-width: 14.625rem;
    --quickbuy-width: 1fr;

    --price-width: 1fr;
    --mcap-width: 1fr;
    --vol-width: 1fr;
    --txns-width: 1fr;
    --traders-width: 1fr;
    --liq-width: 1fr;
    --holders-width: 1fr;
    --ctlikes-width: minmax(6rem, 1fr);
    --organic-score-width: minmax(6rem, 1fr);
    --organic-vol-width: minmax(6.5rem, 1fr);
    --checklist-width: 1fr;
  }
}

/* Default columns */
.TokenTable_tableGrid__a3hhd {
  display: grid;
  grid-template-columns:
    var(--token-width) var(--price-width) var(--mcap-width) var(--vol-width) var(--liq-width)
    var(--holders-width) var(--ctlikes-width) var(--quickbuy-width);
}

/* Trending tab */
[data-tab='toptrending'] .TokenTable_tableGrid__a3hhd {
  grid-template-columns:
    var(--token-width) var(--price-width) var(--mcap-width) var(--vol-width) var(--liq-width)
    var(--holders-width) var(--ctlikes-width) var(--quickbuy-width);
}

/* Popular tab */
[data-tab='popular'] .TokenTable_tableGrid__a3hhd {
  grid-template-columns:
    var(--token-ctlikes-width) var(--price-width) var(--mcap-width) var(--vol-width) var(--liq-width)
    var(--holders-width) var(--ctlikes-width) var(--quickbuy-width);
}

/* Top Traded tab */
[data-tab='runners'] .TokenTable_tableGrid__a3hhd,
[data-tab='toptraded'] .TokenTable_tableGrid__a3hhd,
[data-tab='topgainer'] .TokenTable_tableGrid__a3hhd {
  grid-template-columns:
    var(--token-width) var(--price-width) var(--mcap-width) var(--vol-width) var(--txns-width)
    var(--traders-width) var(--liq-width) var(--holders-width) var(--quickbuy-width);
}

/* Recent tab */
[data-tab='recent'] .TokenTable_tableGrid__a3hhd {
  grid-template-columns:
    var(--token-width) var(--mcap-width) var(--vol-width) var(--txns-width) var(--traders-width)
    var(--holders-width) var(--checklist-width) var(--quickbuy-width);
}

/* Organic tab */
[data-tab='toporganicscore'] .TokenTable_tableGrid__a3hhd {
  grid-template-columns:
    var(--token-width) var(--price-width) var(--mcap-width) var(--liq-width) var(--holders-width) var(
      --organic-vol-width
    )
    var(--organic-score-width) var(--quickbuy-width);
}

/* Watchlist tab */
[data-tab='watchlist'] .TokenTable_tableGrid__a3hhd {
  grid-template-columns:
    var(--token-width) var(--price-width) var(--mcap-width) var(--vol-width) var(--liq-width)
    var(--holders-width) var(--ctlikes-width) var(--quickbuy-width);
}

