html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    background-color: #1e1e1e;
	position: relative;
	z-index: 0;
}

h1 {
    margin: 0;
    padding: 0;
    font-size: 18rem;
}

h2 {
    margin: 0;
    padding: 0;
    font-size: 4rem;
}

h3 {
    margin: 0;
    font-size: 15px;
}

h4 {
    margin: 0;
    font-size: 13px;
}

a:link {
    color: #007fd0;
    text-decoration: none;
}

a:visited {
    color: #007fd0;
    text-decoration: none;
}

a:hover,
a:active {
    color: white;
    text-decoration: none;
}

::selection {
    background-color: #ff7500;
    color: white;
}

select {
    background-color: #191919;
    color: #c7c7c7;
    font-size: 12px;
    padding: 2px;
    border: 1px solid #1f1f1f;
    outline: none;
}

select option {
    background-color: #191919;
    text-align: left;
}

form {
    height: 100%;
}

input.textbox {
    width: 100%;
    box-sizing: border-box;
}

textarea {
    width: 100%;
}

.hide-on-pc {
    display: none;
}

.background-text {
    margin-top: 50px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    color: #1d1d1d;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
    text-shadow:
                1px 1px 0 #444,
                -1px -1px 0 #444,
                1px -1px 0 #444,
                -1px 1px 0 #444;
	position: relative;
	z-index: -1;
}

#container {
    padding: 0 10px 10px 10px;
    margin: 0 270px 0 270px;
    display: block;
    color: #c7c7c7;
    text-align: left;
    background-color: #1b1b1b;
    border: 1px solid #1f1f1f;
    border-top: none;
}

.footer-forum {
    display: flex;
    justify-content: space-between; /* Rozkłada elementy na lewo i prawo */
    align-items: center;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between; /* Rozkłada elementy na lewo i prawo */
    align-items: center;
    width: 100%;
}

.select-container {
    display: flex;
    gap: 10px; /* Odstęp między elementami */
    align-items: center;
}

.links-container {
    text-align: right; /* Wyrównanie tekstu do prawej */
}

.group-image {
	display: block;
	margin-bottom:2px;
}

.topnav {
    display: flex; /* Ustawia elementy w jednej linii */
    white-space: nowrap; /* Zapobiega łamaniu wierszy */
    padding: 5px;
    overflow: hidden;
    background-color: #191919;
    border-top: 1px solid #1f1f1f;
    gap: 5px;
}

.topnav a {
    color: #f2f2f2;
    text-align: center;
    padding: 5px 6px;
    text-decoration: none;
    font-size: 13px;
}

.topnav a:visited {
    color: #f2f2f2;
}

.active {
    background-color: #007fd0;
    color: white;
}

.topnav a:hover {
    transition: background 0.25s ease;
    background-color: #3c3c3c;
    color: white;
}

.trow-div {
    display: flex;
    padding: 5px;
    color: #c7c7c7;
    font-size: 13px;
    background-color: #191919;
	border-top: 1px solid #1f1f1f;
	border-bottom: 1px solid #1f1f1f;
}

.trow-div p {
    margin: 0;
    padding: 0 5px;
    flex-wrap: wrap;
    margin-left: 5px;
}

.trow1-div {
    padding: 5px;
    color: #c7c7c7;
    font-size: 13px;
    background-color: #191919;
	border-top: 1px solid #1f1f1f;
	border-bottom: 1px solid #1f1f1f;
}

.trow1-div p {
    margin: 0;
    padding: 0 5px 5px 0;
}

.tcat-div {
    display: flex;
    align-items: center;
    padding: 5px 0 5px 10px;
    background: #1d1d1d url(../../../images/catleft.svg) no-repeat;
    color: #c7c7c7;
    font-size: 13px;
    font-weight: bold;
}

.tborder-div {
    border: 1px solid #1f1f1f;
    border-collapse: collapse;
    margin: 0;
}

.forum_on {
    vertical-align: middle;
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url(../../../images/nnew.svg);
    background-repeat: no-repeat;
}

.forum_off {
    vertical-align: middle;
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url(../../../images/new.svg);
    background-repeat: no-repeat;
}

.avatar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.user-avatar {
    border-radius: 50%;
}

.user-menu a {
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
}

.quicksearch {
    display: flex;
    align-items: center;
    border: 1px solid #1f1f1f;
    padding: 1px;
    margin-left: 10px;
    border-radius: 1px;
}

.dropbtn {
    font-size: 20px;
    color: white;
    cursor: pointer;
}

.dropbtn:hover {
    text-shadow: none;
    color: white;
}

.dropbtn::before {
    content: "\f0c9";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 5px;
    color: #a6a6a6;
}

.dropbtn:hover::before {
    color: white;
}

.search-setting {
    display: flex;
    align-items: center;
}

.search-setting:hover {
    text-shadow: none;
    color: white;
}

.search-setting::before {
    content: "\f013";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 5px;
    color: #a6a6a6;
}

.search-setting:hover::before {
    color: white;
}

.user-pmslink {
    display: flex;
    align-items: center;
}

.user-pmslink:hover {
    background-color: #007fd0;
    color: white;
}

.user-pmslink::before {
    content: "\f075";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 3px 0 10px;
    color: #a6a6a6;
}

.user-pmslink:hover::before {
    color: white;
}

.user-help {
    display: flex;
    align-items: center;
}

.user-help:hover {
    background-color: #007fd0;
    color: white;
}

.user-help::before {
    content: "\f059";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 3px 0 10px;
    color: #a6a6a6;
}

.user-help:hover::before {
    color: white;
}

.user-profile {
    display: flex;
    align-items: center;
}

.user-profile:hover {
    background-color: #007fd0;
    color: white;
}

.user-profile::before {
    content: "\f007";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 6px 0 10px;
    color: #a6a6a6;
}

.user-profile:hover::before {
    color: white;
}

.user-logout {
    display: flex;
    align-items: center;
}

.user-logout:hover {
    background-color: #007fd0;
    color: white;
}

.user-logout::before {
    content: "\f2f5";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 5px 0 10px;
    color: #a6a6a6;
}

.user-logout:hover::before {
    color: white;
}

.user-cplink {
    display: flex;
    align-items: center;
}

.user-cplink:hover {
    background-color: #007fd0;
    color: white;
}

.user-cplink::before {
    content: "\f4fe";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 0 0 10px;
    color: #a6a6a6;
}

.user-cplink:hover::before {
    color: white;
}

.login-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wb_guest a {
    color: white;
}

.log {
    font-size: 14px;
}

.reg {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 280px 0 10px;
    font-size: 14px;
    background: #007fd0;
    border: 1px solid #111;
    border-radius: 5px;
}

.pagination a {
    color: #c7c7c7;
    font-size: 10px;
    padding: 0 3px;
    border: 1px solid #1f1f1f;
    background-color: #191919;
    text-shadow: none;
}

.paginationblue a {
    color: white;
    background-color: #007fd0;
}

.pagination a:hover {
    color: white;
    background-color: #007fd0;
}

.dropdown-divider {
    width: 100%;
    border: none;
    border-top: 1px solid #1f1f1f;
    margin: 10px auto;
}

.dropdown {
    margin: 4px 281px 0 0;
    position: relative;
    display: inline-block;
}

.dropdown.show {
    display: block; /* Dropdown jest widoczny po dodaniu klasy 'show' */
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 210px;
    background-color: #191919;
    border: 1px solid #1f1f1f;
    overflow: auto;
    right: 0;
    z-index: 5;
}

.dropdown-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.dropdown-content a {
    color: #c3c3c3;
    padding: 10px;
    text-decoration: none;
    display: block;
}

.dropdown a:hover {
    color: white;
}

.show {
    display: block;
}

.post-info {
    display: none;
}

.postmobile {
    display: none;
}

.slogin {
    display: none;
}

.lost_password {
    font-size: 12px;
}

.thead {
    width: 50%;
}

.profilelink {
	margin-top: 5px;
    margin-right: 30px;
}

.normal_warning {
    color: red;
}

.reputation_positive {
    color: green;
}

.codeblock {
    padding: 5px;
    background-color: #161616;
}

/** Modal Start **/

.blocker {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 3;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.75);
    text-align: center;
}

.blocker:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.05em;
}

.blocker.behind {
    background-color: transparent;
}

.modal {
    top: -23%; /* Przesunięcie w dół o 20% wysokości kontenera */
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px #000;
    -moz-box-shadow: 0 0 10px #000;
    -o-box-shadow: 0 0 10px #000;
    -ms-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
}

.modal a.close-modal {
    position: absolute;
    top: -12.5px;
    right: -12.5px;
    display: block;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
    background: url(../../../images/close.png) no-repeat 0 0;
}

.modal-spinner {
    display: none;
    width: 64px;
    height: 64px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-right: -32px;
    margin-top: -32px;
    background: url(../../../images/spinner_big.gif) no-repeat center center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
}

/** Modal End **/

.metaleft {
    text-align: left;
}

.metaright {
    text-align: right;
}

.white {
    color: white;
}

.loginmodal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff; /* Tło formularza */
    padding: 2000px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.authoravatar {
    text-align: left;
}

.postmod {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border: 1px solid #1f1f1f;
}

.postsig {
    padding: 5px 0;
    border-top: 1px solid #1f1f1f;
    width: 100%;
    overflow: hidden;
}

.posturl {
    margin-left: auto;
}

.autorstat {
    padding: 0 5px;
    font-size: 12px;
    color: #333;
}

.userdetails {
    font-size: 11px;
    color: #c7c7c7;
    padding: 10px 5px;
}

.editedpost {
    padding-top: 5px;
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 10px;
}

.pwiadomosc {
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.iologged {
    margin-left: auto;
    font-size: 10px;
    color: #aaa;
    margin-top: auto;
}

.postbody {
    padding: 0 5px;
    font-size: 13px;
    line-height: 18px;
    border-top: 1px solid #1f1f1f;
}

.autorprofile {
    font-size: 12px;
    text-align: left;
    padding: 5px;
    border-top: 1px solid #1f1f1f;
}

.displayprefix {
    color: #c7c7c7;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.displayprefix span:first-child {
    text-align: left;
}

.displayprefix span:last-child {
    margin-left: auto;
    text-align: right;
    padding-right: 5px;
}

.autorpostbitdate {
    padding: 5px 5px;
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 11px;
    color: #a6a6a6;
    background-color: #191919;
    border-top: 1px solid #1f1f1f;
}

.autorpostbitdate::before {
    content: "\f15b";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 5px;
    color: #a6a6a6;
}

.showthread1 {
    margin: 0;
    padding: 0;
}

.post_container {
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-template-rows: auto auto;
    border-top: 1px solid #1f1f1f;
}

.autorpost {
    grid-column: 1;
    grid-row: 1;
    padding: 0;
    border-left: 1px solid #1f1f1f;
    border-right: 1px solid #1f1f1f;
    background-color: #191919;
}

.trescposta {
    color: #c7c7c7;
    font-size: 13px;
    grid-column: 2;
    grid-row: 1;
    background-color: #191919;
    border-right: 1px solid #1f1f1f;
}

.metadane {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-column: 1 / span 2;
    background-color: #191919;
    border: 1px solid #1f1f1f;
    margin: 0 0 5px 0;
    padding: 10px;
}

.allpost {
}

.autorpostbit {
    font-weight: bold;
    padding: 5px 0;
    font-size: 12px;
    text-align: center;
    color: #c7c7c7;
    background-color: #191919;
}

.tborder1 {
    margin: 5px 0 0 0;
    padding: 5px 0 5px 10px;
    background: #1d1d1d url(../../../images/catleft.svg) no-repeat;
    font-size: 12px;
    border: 1px solid #1f1f1f;
	border-bottom: none;
}

.tborder2 {
    border: 1px solid #1f1f1f;
    border-collapse: collapse;
    width: 100%;
    margin: 5px 0;
    font-size: 15px;
}

.tborder2 th {
    padding: 5px;
    font-size: 15px;
    border: 1px solid #1f1f1f;
}

.tborder2 td {
    padding: 5px;
    border: 1px solid #1f1f1f;
}

.fleksboks {
    display: flex;
    justify-content: flex-end;
    align-items: right;
}

.tfoot select {
    display: inline-block;
}

.modx {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}

.forumsort {
    display: inline-block;
    vertical-align: middle;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 5px;
}

.clear {
    clear: both;
}

.float_left {
    float: left;
}

.float_right {
    float: right;
}

.thread_legend dd {
    margin: 0 10px 4px 0;
    padding: 0;
}

.textbox {
    background-color: #1e1e1e;
    color: #c7c7c7;
    font-size: 12px;
    padding: 3px;
    border: 1px solid #1f1f1f;
    outline: none;
}

.textbox::placeholder {
    text-align: left;
    font-size: 12px;
    color: #c7c7c7;
}

.textbox1 {
    margin: 2px;
    padding: 3px;
    background-color: #1e1e1e;
    color: #c7c7c7;
    font-size: 12px;
    border: 1px solid #1f1f1f;
    outline: none;
    width: 150px;
}

.textbox1::placeholder {
    color: #c7c7c7;
}

.multistrony {
    margin: 5px 2px;
    font-size: 11px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.multistrony .prawa {
    text-align: right;
}

.nowytemat,
.odpowiedz {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nowytemat .prawa {
    text-align: right;
}

.button {
    color: white;
    display: inline-block;
    padding: 4px 8px;
    margin: 2px 2px 2px 2px;
    font-size: 10px;
    background: #007fd0;
    border: 1px solid #111;
    border-radius: 5px;
}

.button a {
    color: white;
}

.button:visited {
    color: white;
}

.button1 {
    color: white;
    display: inline-block;
    padding: 4px 8px;
    margin: 2px 2px 2px 2px;
    font-size: 10px;
    background: #191919;
    border: 1px solid #141414;
    border-radius: 2px;
}

.button2 {
    color: white !important;
    display: inline-block;
    padding: 5px 10px;
    margin: 0;
    font-size: 15px;
    background: #007fd0;
    border: 1px solid #111;
    border-radius: 1px;
}

.button3 {
    color: white;
    display: inline-block;
    padding: 4px 8px 5px 8px;
    margin: 2px 2px 2px 0;
    font-size: 10px;
    background: #007fd0;
    border: 1px solid #111;
    border-radius: 1px;
}

/* footer  */
.separator {
    color: #444;
    font-weight: bold;
    font-size: 10px;
    padding-left: 5px;
}

.linki ul {
    text-align: center;
    padding: 0;
    margin: 15px 0;
    letter-spacing: -0.5px;
}

.linki ul li {
    display: inline-block;
    list-style-type: none;
}

.linki ul li a {
    font-size: 11px;
}

.linkidol {
    text-align: center;
    font-size: 11px;
    color: #444;
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 1px black;
}

.linkidol a {
    color: #444;
    font-size: 11px;
}

.linkidol a:hover {
    color: #575757;
}
/* footer  END*/

.statystyki {
    background: #191919 url(../../../images/catleft.svg) no-repeat;
    color: #6b696b;
}

.center {
    text-align: center;
}

.center-text {
    display: block;
    text-align: center;
}

.right {
    text-align: right;
}

.subforumicon {
    margin: 0 5px 0 0;
    height: 7px;
    width: 6px;
    display: inline-block;
    background: url(../../../images/kwadrat.svg) no-repeat 0 0;
}
.decodemenu {
    position: fixed;
    z-index: 4;
    top: 0;
    width: 100%;
    background-color: #232323;
    padding: 0 180px;
    box-sizing: border-box;
    text-align: center;
}

.decodemenu a img {
    padding: 15px 0;
    display: block;
    float: left;
}

.decodemenu ul {
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.decodemenu ul li {
}

.decodemenu ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 30px;
    transition: background 0.25s ease;
}

.decodemenu ul li a:hover {
    color: white;
}

.hidden-nav {
    transform: translateY(-100%);
    transition: transform 0.2s ease;
}

.visible-nav {
    transform: translateY(0);
    transition: transform 0.2s ease;
}

.aktywny {
    background: #007fd0;
    padding: 31px 0;
    color: #fff;
}

.aktywny-blue:hover {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 31px 0;
    transition: background 0.25s ease;
    background-color: #3c3c3c;
}

.resize {
    display: none;
}

.menu-toggle {
    display: none;
    background-color: #007fd0; /* Tło przycisku #a1c42c #007fd0 #04a39a*/
    color: white;
    border: none;
    padding: 9px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.menu-line {
    display: none;
    width: 100%;
    border: none;
    border-top: 1px solid #2d2d2d;
    margin: 10px auto;
}

.forummenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    margin-top: -331px;
    background-color: #191919;
}

.lewa {
    margin-left: 281px;
}

.lewa ul,
.prawa ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.lewa ul li,
.prawa ul li {
    display: flex;
    align-items: center;
}

.lewa ul li a,
.prawa ul li a {
    color: #c3c3c3;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 12px;
}

.lewa ul li a:hover,
.prawa ul li a:hover {
    background-color: #555;
}

.wiadompm {
    color: #c3c3c3;
    text-decoration: none;
    font-size: 12px;
}

.ostrzezenia {
}

/* nav */
.link {
    padding: 10px;
    text-decoration: none;
    font-size: 12px;
}

.czas {
    color: #383838;
    font-size: 11px;
}

.navi {
    color: #383838;
    font-weight: bold;
    font-size: 12px;
}

.navi a {
    color: #007fd0;
    font-weight: bold;
    font-size: 12px;
}

.navi a:hover {
    color: white;
}

.navi1 {
    display: flex;
}

.navi1 a {
    color: #007fd0;
    font-weight: bold;
    font-size: 12px;
}

.navi1 a:hover {
    color: white;
}
/* nav END */

.witaj {
    text-decoration: none;
    color: #007fd0;
    font-weight: bold;
    font-size: 12px;
}

.smalltext {
    font-size: 12px;
    color: #c7c7c7;
}

.smalltext1 {
    font-size: 11px;
    color: #c7c7c7;
}

.smalltext2 {
    font-size: 11px;
    color: #383838;
}

.smalltext3 {
    font-size: 11px;
    color: #383838;
}

/* forumbit_depth1_cat */
.tborder {
    border: 1px solid #1f1f1f;
    border-collapse: collapse;
    width: 100%;
    margin: 0;
}

.tborder th {
    padding: 5px;
    font-size: 15px;
    border: 1px solid #1f1f1f;
}

.tborder td {
    padding: 8px;
    border: 1px solid #1f1f1f;
}

td.legenda {
    height: 25%;
    color: #c7c7c7;
    background-color: #191919;
    text-align: left;
}

th.tcat {
    padding: 5px 0 5px 10px;
    background: #1d1d1d url(../../../images/catleft.svg) no-repeat;
    color: #c7c7c7;
    width: 5px;
    font-size: 13px;
    font-weight: bold;
}

th.tcat a {
    color: #c7c7c7;
}

td.forum {
    background-color: #191919;
    color: #c7c7c7;
    text-align: left;
    font-size: 12px;
    width: 80%;
}

td.temat {
    color: #c7c7c7;
    text-align: center;
    width: 10%;
    font-size: 12px;
    background-color: #191919;
}

td.lastpost {
    color: #c7c7c7;
    text-align: center;
    width: 10%;
    font-size: 12px;
    background-color: #191919;
}

th.lastpost {
    color: #c7c7c7;
    text-align: center;
    width: 10%;
    font-size: 12px;
    background-color: #191919;
}

.trow1 {
    background-color: #191919;
    color: #c7c7c7;
}

.trow2 {
    background-color: #191919;
    color: #c7c7c7;
}

.trow3 {
    background-color: #191919;
    color: #c7c7c7;
    padding: 10px;
}

.trow4 {
    background-color: #191919;
    color: #c7c7c7;
    padding: 5px;
}

/* forumbit_depth1_cat END */

/* forumdisplay_threadlist */

th.forumdisplay {
    background-color: #191919;
    color: #c7c7c7;
    text-align: center;
    font-size: 12px;
    width: 60%;
    font-weight: bold;
}

th.autor {
    color: #c7c7c7;
    text-align: center;
    width: 10%;
    font-size: 12px;
    background-color: #191919;
}

th.odp {
    color: #c7c7c7;
    text-align: center;
    width: 10%;
    font-size: 12px;
    background-color: #191919;
}

th.wys {
    color: #c7c7c7;
    text-align: center;
    width: 10%;
    font-size: 12px;
    background-color: #191919;
}

/* forumdisplay_threadlist END */

/* Media query dla małych ekranów 830*/
@media (max-width: 830px) {
	.background-text {
		display: none;
	}
	
	.footer-container {
        justify-content: flex-end; /* Przesuwa .links-container na prawą stronę */
    }
	
    .menu-right-button {
        position: relative;
    }

    .menu-right-button::before {
        background: linear-gradient(to left, #191919 70%, transparent 100%);
        position: absolute;
        right: 0;
        bottom: 4px;
        content: "\f054";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        padding: 5px;
        color: #f2f2f2;
    }

    .menu-left-button {
        position: relative;
    }

    .menu-left-button::before {
        background: linear-gradient(to right, #191919 70%, transparent 100%);
        position: absolute;
        top: 6px;
        content: "\f053";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        padding: 5px;
        color: #f2f2f2;
    }

    .topnav {
        scrollbar-color: transparent transparent;
        overflow: scroll; /* Ukrywa suwak */
        padding: 5px 20px;
    }

    .textbox1 {
        width: 100px;
    }

    .reg {
        margin: 0 0 0 5px;
    }

    .wb_guest {
        font-size: 10px;
        padding-right: 9px; /* Dodanie marginesu wewnętrznego z prawej */
    }

    .wb_guest a {
        text-align: center; /* Wyrównanie tekstu w środku linku */
    }

    .hide-on-pc {
        display: none;
    }

    .dropdown {
        margin: 4px 12px 0 0;
    }

    .lewa {
        margin-left: 0;
    }

    td.forum {
        width: 80%;
    }

    td.temat {
        width: 20%;
    }

    .resize {
        display: block;
    }

    .resize a {
        color: white;
    }

    .autorpostbitdate {
        border: none;
    }

    .trescposta {
        border: 1px solid #1f1f1f;
        background-color: #191919;
    }

    .metadane {
        border-top: none;
    }

    .autorpostbit {
        display: none;
    }

    .userdetails {
    }

    .post_container {
        display: block; /* Zmiana układu na blokowy */
    }

    .menu-line {
        display: block;
    }

    td.hide-on-mobile {
        display: none;
    }

    th.hide-on-mobile {
        display: none;
    }
	
	.hide-on-mobile {
        display: none;
    }

    .forummenu {
        margin-top: 70px;
    }

    .linki ul {
        margin: 5px 0;
    }

    .menu-toggle {
        display: block;
        margin: 7px 10px 10px auto;
    }

    .decodemenu {
        padding: 10px 0;
    }

    .decodemenu a img {
        padding: 0;
        display: block;
        float: left;
    }
    .decodemenu ul {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 10px;
    }

    .decodemenu ul.show {
        display: flex;
    }

    .decodemenu ul li {
        display: block;
    }

    .decodemenu ul li a {
        color: white;
        text-align: right;
        text-decoration: none;
        font-size: 15px;
        padding: 10px 10px;
    }

    .aktywny {
        color: #fff;
        background: #007fd0;
        text-align: left;
        width: 100%;
        padding: 10px 0;
    }

    .aktywny-blue {
        color: #fff;
        background: #232323;
        width: 100%;
        padding: 10px 0;
        text-align: left;
        border-top: 1px solid #2d2d2d;
    }

    .aktywny-blue:hover {
        color: #fff;
        background: #323232;
        padding: 10px 0;
    }

    body #container {
        margin: 0;
    }

    .tfoot select {
        width: 100%;
    }

    input.button,
    button,
    select {
        margin: 5px 0;
    }

    .autorpost {
        border-top: none;
        border-right: 1px solid #1f1f1f;
        background-color: #191919;
    }

    .authoravatar img {
        height: 40px;
        width: 40px;
    }

    .autorprofile {
        display: flex; /* Ustawienie Flexbox, gdy ekran jest mały */
        justify-content: flex-start; /* Ustawienie elementów w jednej linii */
		flex-direction: column;
		border: none;
    }
	
	.avatar-group {
		gap: 5px;
		display: flex; /* Zapewnia, że useravatar i groupimage są obok siebie */
	}

    .profilelink {
        text-align: left;
        display: block;
    }
	
    .group-container {
        align-items: flex-start; /* Wyrównanie do lewej */
    }

    .userdetails {
        display: none;
    }

    .post-info {
        display: flex;
        justify-content: space-between; /* Rozkłada elementy na boki */
        align-items: center; /* Wyrównanie pionowe */
    }

    .postmobile,
    .slogin {
        font-size: 9px;
        display: inline; /* Alternatywnie można użyć inline-block */
    }
}

/* DVZ Shoutbox */
#shoutbox {
    margin-bottom: 10px;
    background-color: #191919;
}
#shoutbox .head {
    padding: 8px;
}
#shoutbox.front .head {
    cursor: pointer;
}
#shoutbox .head .right a {
    padding: 8px;
}
#shoutbox.collapsed .head {
    opacity: 0.6;
}
#shoutbox.collapsed .body {
    display: none;
}

#shoutbox .panel {
    border-top: solid 1px #1d1d1d;
}
#shoutbox input.text {
    margin: 0;
    padding: 10px 8px;
    width: 100%;
    box-sizing: border-box;
    border: solid 1px #1d1d1d;
    font-family: Arial, sans-serif;
 	background-color: #1e1e1e;
    font-size: 12px;
    color: #c7c7c7;
}
#shoutbox input.text::placeholder {
    color: #c7c7c7;
}
#shoutbox .minposts,
#shoutbox .blocked {
    padding: 6px;
    font-size: 11px;
}
#shoutbox .panel.minposts {
    background: #fffed8;
    color: #727250;
}
#shoutbox .panel.blocked {
    background: #fcefef;
    color: #543a3a;
}
#shoutbox .panel p {
    margin: 0;
}

#shoutbox .window {
    overflow-y: scroll;
}
#shoutbox .data {
    display: table;
    width: 100%;
    border-top: solid 1px #1d1d1d;
    font-family: Arial, sans-serif;
    font-size: 12px;
}
#shoutbox.front .data {
    border-top: none;
}

#shoutbox .entry {
    display: table-row !important;
    width: 100%;
    transition: background-color 0.2s;
}
#shoutbox .entry:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.01);
}
#shoutbox .entry.new {
    background-color: rgba(255, 255, 100, 0.1);
}
#shoutbox .entry:target {
    background-color: rgba(50, 200, 255, 0.1);
}
#shoutbox .entry > div {
    border-bottom: solid 1px #1d1d1d;
}
#shoutbox .entry:last-child > div {
    border-bottom: none;
}

#shoutbox .entry > div {
    display: table-cell;
    padding: 4px;
}

#shoutbox .avatar {
    height: 22px;
}
#shoutbox .avatar img {
    margin: 0 auto;
    vertical-align: middle;
    max-height: 30px;
    max-width: 30px;
    border: solid 1px rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
#shoutbox .user {
    border-right: solid 1px #1d1d1d;
    text-align: right;
    white-space: nowrap;
}
#shoutbox .text {
    width: 100%;
    color: #c7c7c7;
    word-break: break-all;
    word-wrap: break-word;
}
#shoutbox .info {
    font-size: 11px;
    color: #aaa;
    white-space: nowrap;
    text-align: right;
}
#shoutbox .entry.unread .info:before {
    display: inline-block;
    margin-right: 10px;
    height: 4px;
    width: 4px;
    content: "";
    background: rgba(255, 100, 0, 0.8);
    border-radius: 10px;
    vertical-align: middle;
}
#shoutbox .info a {
    color: inherit;
}
#shoutbox .mod {
    padding: 6px 8px;
    font-size: 9px;
    font-weight: bold;
    text-decoration: none;
}
#shoutbox .mod:nth-of-type(2) {
    margin-right: 5px;
    border-left: solid 1px #1d1d1d;
}
#shoutbox .ip {
    margin-right: 10px;
    color: #cecece;
}
#shoutbox .tcatsb-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0 5px 10px;
    background: #1d1d1d url(../../../images/catleft.svg) no-repeat;
    color: #c7c7c7;
    font-size: 13px;
    font-weight: bold;
}
#shoutbox .tcatsb-div p {
    margin: 0;
    margin-right: 5px;
}
.buttonsb {
    color: white;
    padding: 2px 8px 3px 8px;
    font-size: 10px;
    background: #007fd0;
    border-radius: 1px;
    border: solid 1px #1d1d1d;
}

.buttonsb a {
    color: white;
}

/* Stylizacja paska przewijania dla WebKit (Chrome, Edge, Safari, Opera) */
::-webkit-scrollbar {
    width: 8px; /* Cienki pasek */
}

/* Pasek przewijania */
::-webkit-scrollbar-thumb {
    background: #555; /* Domyślny kolor */
    border-radius: 2px; /* Zaokrąglone rogi */
    transition: background 0.3s ease-in-out; /* Płynna zmiana */
}

/* Pasek po najechaniu myszką */
::-webkit-scrollbar-thumb:hover {
    background: #777; /* Rozjaśnienie */
}

/* Tło scrollbara */
::-webkit-scrollbar-track {
    background: #222; /* Kolor tła */
}
		