/* GTA Game Community 1.2.0 - narzędzia forum */

.gtc-forum-filter-panel {
  width: 100%;
  min-width: 0;
  margin: 0 0 1rem;
  overflow: hidden;
  border: 1px solid rgba(113, 133, 174, .24);
  border-radius: 12px;
  background: rgba(17, 21, 33, .98);
  color: #dce5f4;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .16);
}

.gtc-forum-filter-panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .82rem 1rem;
  border-bottom: 1px solid rgba(123, 142, 182, .17);
  background: linear-gradient(90deg, rgba(31, 38, 58, .92), rgba(30, 25, 49, .92));
}

.gtc-forum-filter-panel > header > div {
  min-width: 0;
}

.gtc-forum-filter-panel .gtc-kicker {
  display: block;
  margin: 0 0 .18rem;
  color: #f6d143;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
}

.gtc-forum-filter-panel h2 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.gtc-filter-status {
  flex: 0 0 auto;
  color: #9cabc2;
  font-size: .73rem;
  font-weight: 700;
  white-space: nowrap;
}

.gtc-forum-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .48rem;
  padding: .72rem .9rem;
  border-bottom: 1px solid rgba(123, 142, 182, .13);
}

.gtc-forum-filter-buttons button {
  min-height: 35px;
  padding: .5rem .72rem;
  border: 1px solid rgba(125, 145, 184, .25);
  border-radius: 8px;
  background: rgba(11, 15, 25, .78);
  color: #bac7da;
  font: inherit;
  font-size: .75rem;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, color .16s ease, transform .16s ease;
}

.gtc-forum-filter-buttons button:hover,
.gtc-forum-filter-buttons button:focus-visible {
  border-color: rgba(104, 211, 255, .6);
  background: rgba(36, 47, 72, .92);
  color: #fff;
  outline: none;
}

.gtc-forum-filter-buttons button:active {
  transform: translateY(1px);
}

.gtc-forum-filter-buttons button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #70d5ff, #9a64ff);
  color: #08101b;
  box-shadow: 0 8px 24px rgba(104, 159, 255, .18);
}

.gtc-forum-filter-results[hidden],
.gtc-native-list-hidden,
.gtc-similar-topics[hidden] {
  display: none !important;
}

.gtc-forum-filter-results {
  display: grid;
}

.gtc-filter-topic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  padding: .82rem 1rem;
  border-top: 1px solid rgba(123, 142, 182, .12);
  background: rgba(15, 19, 30, .78);
}

.gtc-filter-topic:first-child {
  border-top: 0;
}

.gtc-filter-topic:hover {
  background: rgba(25, 31, 47, .9);
}

.gtc-filter-topic.has-unread {
  box-shadow: inset 3px 0 0 #69d4ff;
}

.gtc-filter-topic__main {
  min-width: 0;
}

.gtc-filter-topic__title {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  color: #72d3ff;
  font-size: .89rem;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gtc-filter-topic__title:hover,
.gtc-filter-topic__title:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gtc-filter-topic__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .28rem .7rem;
  margin-top: .28rem;
  color: #8f9db3;
  font-size: .68rem;
  line-height: 1.35;
}

.gtc-filter-topic__forum {
  color: #b9c6da;
  font-weight: 700;
}

.gtc-filter-topic__stats {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .42rem;
  color: #9cabc1;
  font-size: .69rem;
  white-space: nowrap;
}

.gtc-filter-topic__stats > span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: .25rem .48rem;
  border: 1px solid rgba(125, 145, 184, .17);
  border-radius: 999px;
  background: rgba(10, 14, 24, .7);
}

.gtc-filter-topic__unread {
  border-color: rgba(105, 212, 255, .34) !important;
  background: rgba(44, 155, 213, .12) !important;
  color: #71d7ff;
  font-weight: 900;
}

.gtc-filter-topic__solved {
  border-color: rgba(76, 220, 146, .34) !important;
  background: rgba(35, 154, 95, .12) !important;
  color: #6ee9a8;
  font-weight: 900;
}

.gtc-filter-loading,
.gtc-filter-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 92px;
  padding: 1rem;
  color: #97a5bb;
  text-align: center;
}

.gtc-filter-loading > span {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(112, 213, 255, .22);
  border-top-color: #70d5ff;
  border-radius: 50%;
  animation: gtc-tools-spin .8s linear infinite;
}

.gtc-filter-empty {
  flex-direction: column;
}

.gtc-filter-empty strong {
  color: #f0f4fb;
}

.gtc-filter-empty span {
  font-size: .78rem;
}

@keyframes gtc-tools-spin {
  to { transform: rotate(360deg); }
}

.gtc-topic-has-unread {
  font-weight: 900 !important;
}

.gtc-unread-badge {
  display: inline-flex;
  align-items: center;
  margin-left: .4rem;
  padding: .18rem .4rem;
  border: 1px solid rgba(105, 212, 255, .34);
  border-radius: 999px;
  background: rgba(44, 155, 213, .12);
  color: #72d8ff;
  font-size: .61rem;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
  vertical-align: middle;
}

.gtc-post-permalink {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  min-height: 27px;
  margin-left: .55rem;
  padding: .28rem .48rem;
  border: 1px solid rgba(126, 147, 186, .22);
  border-radius: 7px;
  background: rgba(12, 16, 26, .72);
  color: #9cabc1;
  font: inherit;
  font-size: .65rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  vertical-align: middle;
}

.gtc-post-permalink:hover,
.gtc-post-permalink:focus-visible {
  border-color: rgba(105, 212, 255, .55);
  color: #73d7ff;
  outline: none;
}

.forum-viewtopic-post.gtc-post-target {
  border-color: rgba(105, 212, 255, .78) !important;
  box-shadow: 0 0 0 2px rgba(105, 212, 255, .16), 0 18px 48px rgba(0, 0, 0, .25) !important;
  animation: gtc-target-pulse 1.2s ease 2;
}

@keyframes gtc-target-pulse {
  50% { box-shadow: 0 0 0 5px rgba(105, 212, 255, .1), 0 18px 48px rgba(0, 0, 0, .25); }
}

.gtc-draft-status {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .38rem;
  min-height: 24px;
  margin: .35rem 0 0;
  color: #8796ad;
  font-size: .66rem;
  font-weight: 650;
}

.gtc-draft-status i {
  color: #6ed6ff;
}

.gtc-draft-restore {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 .9rem;
  padding: .78rem .9rem;
  border: 1px solid rgba(246, 209, 67, .28);
  border-radius: 10px;
  background: rgba(88, 70, 15, .13);
  color: #dbe5f4;
}

.gtc-draft-restore > div:first-child {
  display: grid;
  gap: .18rem;
  min-width: 0;
}

.gtc-draft-restore strong {
  color: #f5d64f;
  font-size: .82rem;
}

.gtc-draft-restore span {
  color: #9eacc0;
  font-size: .68rem;
}

.gtc-draft-restore__actions {
  display: flex;
  flex: 0 0 auto;
  gap: .45rem;
}

.gtc-draft-restore__actions button {
  min-height: 34px;
  padding: .45rem .66rem;
  border: 1px solid rgba(126, 147, 186, .25);
  border-radius: 8px;
  background: rgba(15, 20, 32, .92);
  color: #dce5f4;
  font: inherit;
  font-size: .7rem;
  font-weight: 800;
  cursor: pointer;
}

.gtc-draft-restore__actions button:hover,
.gtc-draft-restore__actions button:focus-visible {
  border-color: #6ed6ff;
  color: #fff;
  outline: none;
}

.gtc-draft-restore__load {
  border-color: transparent !important;
  background: linear-gradient(135deg, #70d5ff, #9a64ff) !important;
  color: #08101b !important;
}

.gtc-similar-topics {
  width: 100%;
  margin: .55rem 0 .9rem;
  overflow: hidden;
  border: 1px solid rgba(112, 133, 174, .22);
  border-radius: 10px;
  background: rgba(13, 17, 28, .96);
}

.gtc-similar-topics > header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .8rem;
  padding: .65rem .8rem;
  border-bottom: 1px solid rgba(123, 142, 182, .14);
  background: rgba(28, 34, 51, .72);
}

.gtc-similar-topics > header strong {
  color: #fff;
  font-size: .78rem;
}

.gtc-similar-topics > header span {
  color: #91a0b6;
  font-size: .64rem;
}

.gtc-similar-topics__list {
  display: grid;
}

.gtc-similar-topics__list > a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .8rem;
  min-width: 0;
  padding: .65rem .8rem;
  border-top: 1px solid rgba(123, 142, 182, .11);
  color: inherit;
  text-decoration: none;
}

.gtc-similar-topics__list > a:first-child {
  border-top: 0;
}

.gtc-similar-topics__list > a:hover,
.gtc-similar-topics__list > a:focus-visible {
  background: rgba(30, 38, 57, .8);
  outline: none;
}

.gtc-similar-topics__list > a > span {
  display: grid;
  gap: .15rem;
  min-width: 0;
}

.gtc-similar-topics__list strong {
  overflow: hidden;
  color: #72d5ff;
  font-size: .75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gtc-similar-topics__list small {
  overflow: hidden;
  color: #8f9db3;
  font-size: .63rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gtc-similar-topics__list em {
  padding: .23rem .42rem;
  border: 1px solid rgba(126, 147, 186, .19);
  border-radius: 999px;
  color: #a8b5c9;
  font-size: .61rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.gtc-similar-topics__list > a.is-solved em {
  border-color: rgba(76, 220, 146, .3);
  background: rgba(35, 154, 95, .1);
  color: #6ee9a8;
}

.gtc-similar-topics__list > p,
.gtc-similar-loading {
  margin: 0;
  padding: .78rem .85rem;
  color: #8f9db3;
  font-size: .7rem;
}

.gtc-readable-message {
  border-radius: 10px !important;
  font-weight: 700;
  line-height: 1.45;
}

.gtc-tools-toast {
  display: flex;
  align-items: center;
  min-height: 46px;
  font-weight: 750;
  line-height: 1.35;
}

/* Nowe skróty w istniejących panelach motywu. */
.gtx-account-compact .gtc-account-my-topics > a,
.gtx-account-compact .gtc-account-my-replies > a {
  display: flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
}

.gtx-quick-links > .gtc-quick-new-posts {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.gtx-quick-links > .gtc-quick-new-posts > span {
  display: grid;
  gap: .15rem;
}

.gtx-quick-links > .gtc-quick-new-posts small {
  display: block;
}

@media (max-width: 760px) {
  .gtc-forum-filter-panel > header,
  .gtc-draft-restore,
  .gtc-similar-topics > header {
    align-items: stretch;
    flex-direction: column;
  }

  .gtc-filter-status {
    white-space: normal;
  }

  .gtc-forum-filter-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gtc-forum-filter-buttons button {
    width: 100%;
  }

  .gtc-filter-topic {
    grid-template-columns: minmax(0, 1fr);
    gap: .55rem;
  }

  .gtc-filter-topic__stats {
    justify-content: flex-start;
  }

  .gtc-filter-topic__title {
    white-space: normal;
  }

  .gtc-draft-restore__actions {
    width: 100%;
  }

  .gtc-draft-restore__actions button {
    flex: 1 1 0;
  }
}

@media (max-width: 460px) {
  .gtc-forum-filter-buttons {
    grid-template-columns: minmax(0, 1fr);
  }

  .gtc-similar-topics__list > a {
    grid-template-columns: minmax(0, 1fr);
  }

  .gtc-similar-topics__list em {
    justify-self: start;
  }

  .gtc-post-permalink span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gtc-filter-loading > span,
  .forum-viewtopic-post.gtc-post-target {
    animation: none;
  }
}


/* GTA Game Community 1.2.1 - cytat wielokrotny i użytkownicy online */

.gtc-multiquote-button {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  min-height: 36px;
  margin: 0;
  padding: .52rem .7rem;
  border: 1px solid rgba(126, 148, 190, .25);
  border-radius: 9px;
  background: rgba(18, 23, 37, .95);
  color: #cbd8ea;
  font: inherit;
  font-size: .75rem;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, color .16s ease;
}

.gtc-multiquote-button:hover,
.gtc-multiquote-button:focus-visible {
  border-color: #69d5ff;
  background: rgba(37, 49, 78, .98);
  color: #fff;
  outline: none;
}

.gtc-multiquote-button.is-selected {
  border-color: rgba(255, 217, 74, .6);
  background: rgba(117, 91, 7, .24);
  color: #ffe878;
}

.gtc-multiquote-toolbar {
  position: fixed;
  z-index: 9990;
  right: 1.1rem;
  bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: calc(100vw - 2rem);
  padding: .72rem .8rem;
  border: 1px solid rgba(105, 213, 255, .4);
  border-radius: 12px;
  background: rgba(14, 18, 29, .98);
  color: #dce6f5;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .5);
}

.gtc-multiquote-toolbar > div:first-child {
  display: flex;
  align-items: center;
  gap: .55rem;
  white-space: nowrap;
}

.gtc-multiquote-toolbar > div:first-child > i {
  color: #f5d44e;
}

.gtc-multiquote-toolbar__actions,
.gtc-multiquote-restore__actions {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.gtc-multiquote-toolbar button,
.gtc-multiquote-restore button {
  min-height: 35px;
  padding: .5rem .7rem;
  border: 1px solid rgba(126, 147, 186, .25);
  border-radius: 8px;
  background: rgba(21, 27, 42, .98);
  color: #dce6f5;
  font: inherit;
  font-size: .7rem;
  font-weight: 850;
  cursor: pointer;
}

.gtc-multiquote-toolbar .gtc-multiquote-insert,
.gtc-multiquote-restore .gtc-multiquote-restore__insert {
  border-color: transparent;
  background: linear-gradient(135deg, #70d5ff, #9a64ff);
  color: #08101b;
}

.gtc-multiquote-toolbar button:hover,
.gtc-multiquote-toolbar button:focus-visible,
.gtc-multiquote-restore button:hover,
.gtc-multiquote-restore button:focus-visible {
  border-color: #6ed6ff;
  outline: none;
}

.gtc-multiquote-restore {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 .8rem;
  padding: .75rem .85rem;
  border: 1px solid rgba(105, 213, 255, .28);
  border-radius: 10px;
  background: rgba(29, 48, 72, .22);
  color: #dce6f5;
}

.gtc-multiquote-restore > div:first-child {
  display: grid;
  gap: .15rem;
}

.gtc-multiquote-restore strong {
  color: #fff;
  font-size: .8rem;
}

.gtc-multiquote-restore span {
  color: #99a8be;
  font-size: .68rem;
}

/* Panel korzysta z tej samej wizualnej hierarchii co pozostałe panele boczne. */
.gtc-online-users {
  width: 100%;
  min-width: 0;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(113, 133, 174, .24);
  border-radius: 12px;
  background: rgba(17, 21, 33, .98);
  color: #dce5f4;
}

.gtc-online-users__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  min-height: 46px;
  padding: .72rem .85rem;
  border-bottom: 1px solid rgba(123, 142, 182, .16);
  background: linear-gradient(90deg, rgba(31, 38, 58, .92), rgba(30, 25, 49, .92));
}

.gtc-online-users__header > div {
  display: flex;
  align-items: center;
  gap: .48rem;
  min-width: 0;
}

.gtc-online-users__header i {
  color: #70d5ff;
}

.gtc-online-users__header strong {
  overflow: hidden;
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.gtc-online-users__count {
  display: inline-grid;
  place-items: center;
  min-width: 25px;
  min-height: 25px;
  padding: 0 .42rem;
  border-radius: 999px;
  background: #f4d34c;
  color: #0b111c;
  font-size: .67rem;
  font-weight: 900;
}

.gtc-online-users__body {
  padding: .78rem .82rem;
}

.gtc-online-users__body > p {
  margin: 0;
  color: #94a3b9;
  font-size: .69rem;
  line-height: 1.45;
}

.gtc-online-users__list {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.gtc-online-user {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  max-width: 100%;
  padding: .34rem .5rem;
  border: 1px solid rgba(125, 145, 184, .17);
  border-radius: 999px;
  background: rgba(10, 14, 24, .62);
  color: #d4deed;
  font-size: .67rem;
  font-weight: 750;
}

.gtc-online-user > i {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55e99b;
  box-shadow: 0 0 0 3px rgba(85, 233, 155, .1);
}

.gtc-online-user > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gtc-online-users__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .45rem;
  margin-top: .72rem;
}

.gtc-online-users__summary > span {
  display: grid;
  place-items: center;
  gap: .08rem;
  min-height: 45px;
  padding: .4rem;
  border: 1px solid rgba(125, 145, 184, .15);
  border-radius: 8px;
  background: rgba(10, 14, 24, .55);
  color: #8f9db3;
  font-size: .61rem;
  text-align: center;
}

.gtc-online-users__summary strong {
  color: #fff;
  font-size: .78rem;
}

@media (max-width: 620px) {
  .gtc-multiquote-toolbar {
    right: .65rem;
    bottom: .65rem;
    left: .65rem;
    flex-direction: column;
    align-items: stretch;
  }

  .gtc-multiquote-toolbar > div:first-child {
    justify-content: center;
  }

  .gtc-multiquote-toolbar__actions,
  .gtc-multiquote-restore__actions {
    width: 100%;
  }

  .gtc-multiquote-toolbar button,
  .gtc-multiquote-restore button {
    flex: 1 1 0;
  }

  .gtc-multiquote-restore {
    align-items: stretch;
    flex-direction: column;
  }
}


/* GTA Game Community 1.2.3: filtry, cytat wielokrotny i podgląd posta. */
.gtc-filter-topic__reply-stat {
  display: inline-flex !important;
  align-items: center;
  gap: .27rem;
  white-space: nowrap;
}

body.gtx-site .gtx-forum-shell .gtc-multiquote-button {
  order: 20;
  min-width: 42px;
  min-height: 38px;
  justify-content: center;
  padding: .48rem .62rem;
  margin: 0;
}

body.gtx-site .gtx-forum-shell .gtc-multiquote-button > i {
  margin: 0;
  font-size: 1.02rem;
}

.gtc-post-preview-controls {
  display: flex;
  justify-content: flex-end;
  margin: .7rem 0 .45rem;
}

.gtc-post-preview-button {
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  padding: .58rem .85rem;
  border: 1px solid rgba(105,213,255,.34);
  border-radius: 9px;
  color: #dceafb;
  background: rgba(17,24,39,.94);
  font: inherit;
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
}

.gtc-post-preview-button:hover,
.gtc-post-preview-button:focus-visible {
  border-color: #69d5ff;
  color: #fff;
}

.gtc-post-preview-button:disabled {
  opacity: .6;
  cursor: wait;
}

.gtc-post-preview {
  margin: .55rem 0 1rem;
  overflow: hidden;
  border: 1px solid rgba(105,213,255,.24);
  border-radius: 12px;
  background: rgba(10,15,25,.84);
}

.gtc-post-preview[hidden] {
  display: none !important;
}

.gtc-post-preview > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .68rem .85rem;
  border-bottom: 1px solid rgba(126,148,190,.18);
  background: rgba(20,29,46,.88);
}

.gtc-post-preview-close {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 7px;
  color: #b9c7d9;
  background: rgba(255,255,255,.06);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.gtc-post-preview-close:hover,
.gtc-post-preview-close:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.12);
}

.gtc-post-preview__body {
  min-height: 72px;
  padding: 1rem;
  color: #e3ebf6;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.gtc-post-preview__loading,
.gtc-post-preview__empty,
.gtc-post-preview__error {
  margin: 0;
  color: #9fb0c9;
}

.gtc-post-preview__error {
  color: #ffaaa5;
}

.gtc-post-preview__loading span {
  display: inline-block;
  width: .85rem;
  height: .85rem;
  margin-right: .35rem;
  vertical-align: -.08rem;
  border: 2px solid rgba(255,255,255,.22);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: gtc-filter-spin .7s linear infinite;
}


/* 1.2.3: na lewej stronie akcji kolejność to Pomocne, Cytat wielokrotny. */
body.gtx-site .gtx-forum-shell .gtc-multiquote-button {
  order: 20;
}


/* GTA Game Community 1.2.5 — zwarty panel filtrów i wyrównany skrót. */
body.gtx-site .gtc-forum-filter-panel {
  margin-bottom: .62rem;
  border-radius: 10px;
}

body.gtx-site .gtc-forum-filter-panel > header {
  gap: .65rem;
  padding: .48rem .72rem;
}

body.gtx-site .gtc-forum-filter-panel .gtc-kicker {
  margin-bottom: .08rem;
  font-size: .54rem;
}

body.gtx-site .gtc-forum-filter-panel h2 {
  font-size: .84rem;
  line-height: 1.15;
}

body.gtx-site .gtc-filter-status {
  font-size: .65rem;
}

body.gtx-site .gtc-forum-filter-buttons {
  gap: .32rem;
  padding: .42rem .58rem;
}

body.gtx-site .gtc-forum-filter-buttons button {
  min-height: 30px;
  padding: .34rem .54rem;
  border-radius: 7px;
  font-size: .67rem;
  line-height: 1.1;
}

body.gtx-site .gtx-quick-links > .gtc-quick-new-posts {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: .75rem;
}

body.gtx-site .gtx-quick-links > .gtc-quick-new-posts > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-width: 0;
  line-height: inherit;
}

body.gtx-site .gtx-quick-links > .gtc-quick-new-posts small {
  margin-top: .05rem;
}


/* GTA Game Community 1.2.6 — spokojniejsza paleta i animacja filtrów. */
body.gtx-site .gtx-forum-shell .gtc-forum-filter-buttons button {
  color: #d8e2f0 !important;
  border-color: rgba(116, 143, 182, .30) !important;
  background: linear-gradient(135deg, rgba(27, 35, 50, .98), rgba(34, 29, 47, .98)) !important;
  box-shadow: 0 5px 14px rgba(0, 0, 0, .13) !important;
  transform: translateY(0);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease !important;
}

body.gtx-site .gtx-forum-shell .gtc-forum-filter-buttons button:hover,
body.gtx-site .gtx-forum-shell .gtc-forum-filter-buttons button:focus-visible {
  color: #f5f8fd !important;
  border-color: rgba(103, 205, 238, .48) !important;
  background: linear-gradient(135deg, rgba(34, 46, 63, .99), rgba(45, 36, 59, .99)) !important;
  box-shadow: 0 9px 20px rgba(0, 0, 0, .20), 0 0 0 1px rgba(103, 205, 238, .05) !important;
  transform: translateX(3px) translateY(-1px);
}

body.gtx-site .gtx-forum-shell .gtc-forum-filter-buttons button:active {
  transform: translateY(0);
}

body.gtx-site .gtx-forum-shell .gtc-forum-filter-buttons button.is-active {
  color: #f3f7fc !important;
  border-color: rgba(112, 204, 235, .50) !important;
  background: linear-gradient(135deg, rgba(39, 57, 74, .99), rgba(55, 42, 71, .99)) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025), 0 7px 17px rgba(0, 0, 0, .18) !important;
}

body.gtx-site .gtx-forum-shell :is(
  .gtc-multiquote-button,
  .gtc-post-preview-button,
  .gtc-multiquote-toolbar button,
  .gtc-multiquote-restore button
) {
  color: #dce5f2 !important;
  border-color: rgba(116, 143, 182, .30) !important;
  background: linear-gradient(135deg, rgba(26, 34, 49, .98), rgba(33, 29, 45, .98)) !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, .14) !important;
}

body.gtx-site .gtx-forum-shell :is(
  .gtc-multiquote-button,
  .gtc-post-preview-button,
  .gtc-multiquote-toolbar button,
  .gtc-multiquote-restore button
):hover,
body.gtx-site .gtx-forum-shell :is(
  .gtc-multiquote-button,
  .gtc-post-preview-button,
  .gtc-multiquote-toolbar button,
  .gtc-multiquote-restore button
):focus-visible {
  color: #fff !important;
  border-color: rgba(103, 205, 238, .50) !important;
  background: linear-gradient(135deg, rgba(35, 47, 65, .99), rgba(46, 37, 61, .99)) !important;
}
