:root {
    --feher: #ffffff;
    --sotet: #050416;
    --panel: rgba(255, 255, 255, 0.06);
    --vonal: rgba(255, 255, 255, 0.12);
    --piros: #ff2f68;
    --szoveg: #f6f5f3;
    --halvany: #aaa7b5;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
}

body {
    color: var(--szoveg);
    background:
        radial-gradient(circle at 5% 15%, rgba(145, 0, 56, 0.46), transparent 31%),
        radial-gradient(circle at 90% 80%, rgba(255, 47, 104, 0.12), transparent 30%),
        linear-gradient(120deg, #090719 0%, #060516 52%, #030312 100%);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    overflow: hidden;
}

button,
input,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

a {
    color: inherit;
}

.forum-app {
    height: 100vh;
    height: 100svh;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
}

.forum-fejlec {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 4vw, 54px);
    border-bottom: 1px solid var(--vonal);
    background: rgba(5, 4, 18, 0.68);
    backdrop-filter: blur(18px);
}

.forum-marka {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.forum-marka strong {
    font-family: "Anton", sans-serif;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 400;
    line-height: 1;
}

.forum-marka span {
    color: var(--halvany);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.forum-auth {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: nowrap;
}

.forum-gomb,
.forum-auth button,
.forum-auth a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    color: #090817;
    background: #ffffff;
    border: 0;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.forum-gomb:hover,
.forum-auth button:hover,
.forum-auth a:hover {
    color: #ffffff;
    background: var(--piros);
    transform: scale(0.95);
}

.forum-auth .masodlagos {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.fejlec-profilkep {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
}

.profil-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}

.profil-menu-gomb {
    min-height: 34px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 0;
    border-radius: 4px;
}

.profil-menu-gomb:hover {
    background: transparent;
    transform: none;
}

.fejlec-profil-nev {
    color: #8d9095;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.fejlec-ikon-gomb {
    width: 20px;
    min-height: 20px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b5b8bd;
    background: transparent;
    border: 0;
    border-radius: 4px;
}

.fejlec-ikon-gomb:hover {
    color: #ffffff;
    background: transparent;
    transform: none;
}

.fejlec-ikon-gomb img,
.fejlec-ikon-gomb svg {
    width: 18px;
    height: 18px;
    display: block;
}

.fejlec-ikon-gomb img {
    opacity: 0.82;
    filter: invert(76%) sepia(6%) saturate(154%) hue-rotate(177deg) brightness(91%) contrast(87%);
}

.fejlec-ikon-gomb:hover img {
    opacity: 1;
    filter: invert(100%);
}

.fejlec-ikon-gomb svg {
    fill: currentColor;
}

.profil-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 20;
    width: min(340px, calc(100vw - 24px));
    color: #ffffff;
    background: #202327;
    border: 1px solid #3a3d43;
    border-radius: 4px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.52);
    overflow: hidden;
}

.profil-panel-muveletek {
    display: grid;
    gap: 6px;
    padding: 0 14px 14px;
}

.profil-panel-gomb {
    width: 100%;
    min-height: 34px;
    padding: 0 12px;
    color: #e7e7ec;
    background: #15171b;
    border: 1px solid #3d4148;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    text-align: left;
}

.profil-panel-gomb:hover {
    color: #ffffff;
    background: #24272d;
    transform: none;
}

.profil-panel-gomb.veszely:hover {
    border-color: #ff5d5d;
}

.profil-panel[hidden] {
    display: none;
}

.profil-panel-fulek {
    display: flex;
    height: 78px;
    align-items: center;
    padding: 0 18px;
    border-bottom: 1px solid #3a3d43;
}

.profil-panel-fulek span {
    width: 30px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e8e8ec;
    border-bottom: 2px solid transparent;
    font-size: 22px;
}

.profil-panel-fulek span:first-child {
    border-color: #ffd24d;
}

.profil-urlap {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
    padding: 12px 14px 14px;
}

.profil-kep-valaszto {
    position: relative;
    width: 52px;
    height: 52px;
    cursor: pointer;
}

.profil-kep-valaszto img {
    width: 52px;
    height: 52px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #545963;
}

.profil-kep-valaszto::after {
    content: "↥";
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    color: #111216;
    background: #ffd24d;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
}

.profil-kep-valaszto input {
    display: none;
}

.profil-adatok {
    min-width: 0;
    display: grid;
    gap: 7px;
}

.profil-adatok strong {
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.1;
}

.profil-adatok strong.admin {
    color: #ffd24d;
}

.profil-adatok label {
    display: grid;
    gap: 4px;
}

.profil-adatok .profil-statusz-sor,
.profil-adatok .profil-szerkesztheto-sor {
    display: flex;
    align-items: center;
    gap: 6px;
}

.profil-adatok label span {
    color: #c9cbd1;
    font-size: 11px;
    font-weight: 800;
}

.profil-statusz-szoveg {
    min-width: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profil-szerkeszt-gomb {
    width: 24px;
    min-height: 24px;
    padding: 0;
    color: #d8d8df;
    background: transparent;
    border: 0;
    border-radius: 4px;
    font-size: 14px;
}

.profil-szerkeszt-gomb:hover {
    color: #ffd24d;
    background: transparent;
    transform: none;
}

.profil-adatok input {
    width: 100%;
    min-height: 34px;
    padding: 0 10px;
    color: #ffffff;
    background: #15171b;
    border: 1px solid #3d4148;
    border-radius: 4px;
    font-size: 13px;
}

.profil-adatok input:focus {
    border-color: #ffd24d;
    outline: none;
}

.profil-mentes-gomb {
    justify-self: start;
    min-height: 32px;
    padding: 0 13px;
    border-radius: 4px;
    font-size: 12px;
}

.forum-belso {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    min-height: 0;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(250px, 22vw, 340px);
    gap: 24px;
    padding: 24px clamp(18px, 4vw, 54px) 30px;
}

.forum-panel {
    min-width: 0;
    min-height: 0;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid var(--vonal);
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(18px);
}

.online-panel h2 {
    margin: 0 0 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.auth-urlap {
    display: grid;
    gap: 13px;
}

.auth-urlap label,
.chat-mezo label {
    display: grid;
    gap: 8px;
    color: #e9e7ee;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.auth-urlap input,
.chat-mezo textarea {
    width: 100%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 4px;
    outline: none;
}

.auth-urlap input:focus,
.chat-mezo textarea:focus {
    border-color: rgba(255, 47, 104, 0.8);
    box-shadow: 0 0 0 4px rgba(255, 47, 104, 0.08);
}

.auth-urlap input {
    height: 43px;
    padding: 0 12px;
}

.auth-urlap input[type="file"] {
    height: auto;
    padding: 10px;
}

.chat-panel {
    position: relative;
    min-height: 0;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
        rgba(5, 4, 18, 0.72);
    overflow: hidden;
}

.chat-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 70%);
    pointer-events: none;
}

.chat-panel-fejlec {
    position: relative;
    z-index: 1;
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 47, 104, 0.25), transparent 35%),
        rgba(5, 4, 18, 0.42);
}

.chat-panel-fejlec span {
    display: block;
    margin-bottom: 5px;
    color: var(--piros);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.chat-panel-fejlec h1 {
    margin: 0;
    font-family: "Anton", sans-serif;
    font-size: clamp(38px, 5vw, 70px);
    font-weight: 400;
    line-height: 0.92;
}

.chat-statusz {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.chat-statusz span {
    width: 9px;
    height: 9px;
    margin: 0;
    background: #4dff91;
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(77, 255, 145, 0.65);
}

.forum-uzenetek {
    position: relative;
    z-index: 1;
    min-height: 0;
    padding: 26px;
    overflow-y: auto;
}

.forum-uzenet {
    max-width: 78%;
    margin-bottom: 16px;
    padding: 15px 16px;
    background: rgba(255, 255, 255, 0.092);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px 8px 8px 2px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    animation: uzenetBejon 0.22s ease both;
}

.forum-uzenet.sajat {
    margin-left: auto;
    background: linear-gradient(145deg, rgba(255, 47, 104, 0.95), rgba(164, 0, 60, 0.88));
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 8px 8px 2px 8px;
}

.forum-uzenet-fejlec {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 10px;
}

.forum-uzenet-fejlec img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
}

.forum-uzenet-fejlec strong {
    display: block;
    font-size: 14px;
}

.forum-uzenet-fejlec span {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
}

.forum-uzenet p {
    margin: 0;
    color: #f3f1f7;
    font-size: 14px;
    line-height: 1.55;
    white-space: pre-wrap;
}

.forum-bekuldott-kep {
    display: block;
    max-width: min(100%, 460px);
    max-height: 360px;
    margin-top: 12px;
    object-fit: contain;
    border-radius: 6px;
}

.chat-urlap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: end;
    gap: 12px;
    padding: 18px 20px 20px;
    border-top: 1px solid var(--vonal);
    background: rgba(5, 4, 18, 0.76);
    backdrop-filter: blur(16px);
}

.chat-mezo textarea {
    min-height: 52px;
    max-height: 130px;
    padding: 13px;
    resize: vertical;
    line-height: 1.45;
}

.kep-gomb {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.kep-gomb:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.32);
    transform: scale(0.96);
}

.kep-gomb input {
    display: none;
}

.forum-visszajelzes {
    position: fixed;
    left: 50%;
    bottom: 20px;
    z-index: 10;
    padding: 13px 17px;
    color: #ffe1ea;
    background: rgba(255, 47, 104, 0.2);
    border: 1px solid rgba(255, 47, 104, 0.3);
    border-radius: 4px;
    opacity: 0;
    transform: translate(-50%, 10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.forum-visszajelzes.lathato {
    opacity: 1;
    transform: translate(-50%, 0);
}

.online-panel {
    padding: 22px;
    height: 100%;
    background:
        linear-gradient(160deg, rgba(255, 47, 104, 0.12), transparent 42%),
        rgba(255, 255, 255, 0.05);
    overflow-y: auto;
}

.online-lista {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
}

.online-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    color: #ffffff;
    background: rgba(255, 47, 104, 0.18);
    border: 1px solid rgba(255, 47, 104, 0.32);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.online-tag::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 8px;
    background: #4dff91;
    border-radius: 50%;
}

.online-ures {
    color: var(--halvany);
    font-size: 14px;
    line-height: 1.6;
}

.forum-uzenet-doboz {
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.45;
}

.forum-uzenet-doboz.hiba {
    color: #ffe1ea;
    background: rgba(255, 47, 104, 0.16);
    border: 1px solid rgba(255, 47, 104, 0.3);
}

.forum-uzenet-doboz.siker {
    color: #dfffea;
    background: rgba(21, 145, 78, 0.18);
    border: 1px solid rgba(91, 255, 158, 0.25);
}

.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.auth-modal.nyitva {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.25s ease, visibility 0s;
}

.auth-modal-hatter {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 47, 104, 0.18), transparent 34%),
        rgba(2, 2, 10, 0.78);
    backdrop-filter: blur(16px);
}

.auth-modal-panel {
    position: relative;
    width: min(920px, 100%);
    max-height: min(760px, calc(100vh - 44px));
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(330px, 1fr);
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 47, 104, 0.32), transparent 33%),
        linear-gradient(145deg, rgba(18, 15, 38, 0.96), rgba(6, 5, 19, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.25s ease;
}

.auth-modal.nyitva .auth-modal-panel {
    transform: translateY(0) scale(1);
}

.auth-bezaras {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
}

.auth-bezaras:hover {
    background: var(--piros);
}

.auth-modal-bal {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-modal-bal::before {
    content: "ANT";
    position: absolute;
    top: 34px;
    left: 38px;
    color: rgba(255, 255, 255, 0.045);
    font-family: "Anton", sans-serif;
    font-size: 180px;
    line-height: 0.8;
}

.auth-jelzo {
    position: relative;
    color: var(--piros);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.auth-modal-bal h2 {
    position: relative;
    max-width: 360px;
    margin: 18px 0 20px;
    font-family: "Anton", sans-serif;
    font-size: clamp(56px, 7vw, 94px);
    font-weight: 400;
    line-height: 0.9;
    text-transform: uppercase;
}

.auth-modal-bal p {
    position: relative;
    max-width: 380px;
    margin: 0;
    color: #c9c5d0;
    font-size: 15px;
    line-height: 1.75;
}

.auth-modal-jobb {
    padding: 76px 42px 42px;
    overflow-y: auto;
}

.admin-modal-panel {
    width: min(980px, 100%);
    min-height: 0;
    display: block;
    background:
        radial-gradient(circle at 0 0, rgba(255, 210, 77, 0.16), transparent 34%),
        #191a1f;
}

.admin-modal-belso {
    padding: 42px;
}

.admin-modal-belso h2 {
    margin: 10px 0 26px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.15;
}

.admin-kereso {
    display: grid;
    gap: 10px;
}

.admin-kereso label {
    color: #d7d7df;
    font-size: 13px;
    font-weight: 800;
}

.admin-kereso div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.admin-kereso input {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    color: #ffffff;
    background: #111216;
    border: 1px solid #3c3c44;
    border-radius: 6px;
    font-size: 14px;
}

.admin-kereso input:focus {
    border-color: #ffd24d;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 210, 77, 0.12);
}

.admin-talalatok {
    display: grid;
    gap: 8px;
    margin-top: 20px;
    max-height: 420px;
    overflow-y: auto;
}

.admin-felulet-racs {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    gap: 16px;
}

.admin-talalat,
.admin-ures {
    margin: 0;
    padding: 14px;
    background: #111216;
    border: 1px solid #33343c;
    border-radius: 6px;
}

.admin-talalat {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.admin-talalat:hover,
.admin-talalat.aktiv {
    border-color: #ffd24d;
    background: #181a1f;
}

.admin-talalat div {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.admin-talalat strong,
.admin-talalat span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-talalat strong {
    color: #ffffff;
    font-size: 14px;
}

.admin-talalat span,
.admin-ures {
    color: #c8c8d0;
    font-size: 13px;
}

.admin-talalat .forum-gomb:disabled {
    cursor: default;
    opacity: 0.72;
}

.admin-log-panel {
    min-width: 0;
    margin-top: 20px;
    padding: 14px;
    background: #111216;
    border: 1px solid #33343c;
    border-radius: 6px;
}

.admin-log-panel h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 15px;
}

.admin-log {
    display: grid;
    gap: 8px;
    max-height: 420px;
    overflow-y: auto;
}

.admin-log-elem {
    padding: 10px;
    background: #1a1c21;
    border: 1px solid #33343c;
    border-radius: 5px;
}

.admin-log-elem time {
    display: block;
    margin-bottom: 6px;
    color: #8f939d;
    font-size: 11px;
    font-weight: 800;
}

.admin-log-elem p {
    margin: 0;
    color: #f1f1f4;
    font-size: 13px;
    line-height: 1.4;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.admin-log-elem a {
    display: inline-flex;
    margin-top: 7px;
    color: #ffd24d;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.auth-tabok {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}

.auth-tabok button {
    min-height: 40px;
    color: #ffffff;
    background: transparent;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
}

.auth-tabok button.aktiv {
    color: #090817;
    background: #ffffff;
}

.auth-tab-panel {
    display: none;
}

.auth-tab-panel.aktiv {
    display: grid;
}

@keyframes uzenetBejon {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
    .forum-belso {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .chat-panel {
        min-height: min(680px, calc(100svh - 150px));
    }

    .online-panel {
        min-height: 160px;
        height: auto;
    }
}

@media (max-width: 820px) {
    .auth-modal-panel {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .auth-modal-bal {
        min-height: 250px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .auth-modal-jobb {
        padding: 34px 24px 28px;
    }
}

@media (max-width: 650px) {
    body {
        overflow: auto;
    }

    .forum-app {
        min-height: 100vh;
        height: auto;
    }

    .forum-fejlec {
        align-items: flex-start;
        flex-direction: column;
    }

    .forum-belso {
        padding: 16px;
    }

    .chat-urlap {
        grid-template-columns: 1fr;
    }

    .chat-panel-fejlec {
        align-items: flex-start;
        flex-direction: column;
    }

    .forum-uzenet {
        max-width: 100%;
    }

    .auth-modal {
        padding: 14px;
        align-items: start;
        overflow-y: auto;
    }

    .auth-modal-bal {
        padding: 34px 24px;
    }

    .auth-modal-bal::before {
        font-size: 118px;
    }
}

/* Kompakt forum chat nezet */
:root {
    --chat-hatter: #18181b;
    --chat-panel: #1f1f23;
    --chat-panel-2: #0e0e10;
    --chat-vonal: #34343a;
    --chat-szoveg: #efeff1;
    --chat-halvany: #adadb8;
    --chat-lila: #ffd24d;
    --chat-kek: #00adff;
    --chat-racs: rgba(255, 255, 255, 0.035);
}

body {
    background:
        linear-gradient(var(--chat-racs) 1px, transparent 1px),
        linear-gradient(90deg, var(--chat-racs) 1px, transparent 1px),
        #202328;
    background-size: 28px 28px;
}

.forum-app {
    grid-template-rows: auto 1fr;
    background: var(--chat-hatter);
}

.forum-fejlec {
    min-height: 66px;
    display: flex;
    padding: 10px 18px;
    background: rgba(31, 31, 35, 0.96);
    border-bottom: 1px solid var(--chat-vonal);
    backdrop-filter: none;
}

.forum-marka strong {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0;
}

.forum-marka span {
    color: var(--chat-halvany);
    font-size: 11px;
}

.forum-auth button,
.forum-auth a,
.forum-auth .masodlagos {
    min-height: 34px;
    padding: 0 13px;
    color: #ffffff;
    background: #2f2f35;
    border: 1px solid var(--chat-vonal);
    border-radius: 4px;
    font-size: 12px;
}

.forum-auth button:hover,
.forum-auth a:hover {
    background: #7e48d9;
    transform: none;
}

.fejlec-profilkep {
    width: 38px;
    height: 38px;
    border-color: #ffd24d;
}

.forum-auth .profil-menu-gomb {
    width: auto;
    min-height: 42px;
    padding: 0;
    gap: 6px;
    background: transparent;
    border: 0;
    border-radius: 4px;
}

.forum-auth .profil-menu-gomb:hover {
    background: transparent;
    transform: none;
}

.forum-auth .fejlec-ikon-gomb {
    width: 20px;
    min-height: 20px;
    padding: 0;
    color: #b5b8bd;
    background: transparent;
    border: 0;
}

.forum-auth .fejlec-ikon-gomb:hover {
    color: #ffffff;
    background: transparent;
    transform: none;
}

.forum-auth .profil-panel-gomb {
    width: 100%;
    min-height: 34px;
    padding: 0 12px;
    justify-content: flex-start;
    color: #e7e7ec;
    background: #15171b;
    border: 1px solid #3d4148;
    border-radius: 4px;
}

.forum-belso {
    width: 100%;
    max-width: none;
    min-height: calc(100svh - 66px);
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(460px, 760px);
    place-content: center;
    padding: 24px 288px 24px 88px;
    background: transparent;
}

.forum-panel,
.chat-panel {
    width: 100%;
    min-height: 0;
    color: var(--chat-szoveg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 28%),
        var(--chat-panel);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: none;
    overflow: hidden;
}

.chat-panel {
    grid-column: 1;
    grid-row: 1;
    height: min(70svh, 680px);
    min-height: 520px;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.chat-panel::before,
.forum-panel::before {
    display: none;
}

.forum-oldalsav {
    position: fixed;
    top: 90px;
    right: 10px;
    z-index: 3;
    width: 250px;
    display: grid;
    gap: 18px;
}

.online-panel,
.nevnap-panel {
    display: block;
    position: relative;
    padding: 18px 16px 20px;
    overflow: hidden;
}

.online-panel::after,
.nevnap-panel::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: #ffd24d;
}

.chat-panel-fejlec {
    min-height: 58px;
    padding: 14px 18px;
    background:
        radial-gradient(circle at 0 0, rgba(255, 210, 77, 0.14), transparent 34%),
        #202026;
    border-bottom: 1px solid var(--chat-vonal);
}

.chat-panel-fejlec span {
    display: none;
}

.chat-panel-fejlec h1 {
    margin: 0;
    color: var(--chat-szoveg);
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.chat-panel-fejlec h1::before {
    content: "";
    width: 9px;
    height: 9px;
    display: inline-block;
    margin-right: 10px;
    background: #36f29a;
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(54, 242, 154, 0.7);
}

.online-panel h2,
.nevnap-panel h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 28px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.online-panel h2::before {
    content: "♧";
    color: #c9c9d1;
    font-size: 19px;
    font-weight: 400;
}

.nevnap-panel h2::before {
    content: "♙";
    color: #c9c9d1;
    font-size: 18px;
    font-weight: 400;
}

.chat-statusz,
.forum-gomb {
    min-height: 28px;
    padding: 0 10px;
    color: var(--chat-szoveg);
    background: #2f2f35;
    border: 0;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.chat-statusz span {
    width: 7px;
    height: 7px;
}

.forum-uzenetek {
    padding: 18px 18px 12px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        #1b1b20;
    background-size: 28px 28px;
    scrollbar-width: thin;
    scrollbar-color: #53535f transparent;
}

.forum-uzenet {
    max-width: none;
    margin: 0 -6px 4px;
    padding: 5px 6px;
    color: var(--chat-szoveg);
    background: transparent;
    border: 0;
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
    line-height: 1.5;
    animation: none;
}

.forum-uzenet:hover {
    background: rgba(255, 255, 255, 0.075);
}

.forum-uzenet.sajat {
    margin-left: -4px;
    background: transparent;
    border: 0;
    border-radius: 4px;
}

.forum-uzenet-ido {
    margin-right: 8px;
    color: #8a8a96;
    font-size: 12px;
}

.forum-uzenet-nev {
    color: var(--nev-szin, var(--chat-kek));
    font-size: 14px;
    font-weight: 800;
}

.forum-uzenet-nev.admin {
    color: #ffd24d;
}

.forum-uzenet-nev::after {
    content: ":";
    color: var(--chat-szoveg);
}

.forum-uzenet p {
    display: inline;
    margin: 0 0 0 5px;
    color: var(--chat-szoveg);
    font-size: 14px;
    line-height: inherit;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.chat-inline-emoji {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 0 2px;
    vertical-align: -4px;
}

.chat-inline-sticker {
    width: min(190px, 100%);
    max-height: 120px;
    display: block;
    margin: 8px 0 4px 52px;
    object-fit: contain;
    border-radius: 10px;
    background: #141417;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.forum-bekuldott-kep {
    max-width: min(100%, 280px);
    max-height: 210px;
    margin: 8px 0 2px 58px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.forum-uzenet-muveletek {
    display: inline-flex;
    margin-left: 8px;
    vertical-align: middle;
}

.forum-uzenet-menu-gomb {
    min-width: 24px;
    height: 20px;
    padding: 0 5px 3px;
    color: #b9b9c4;
    background: transparent;
    border: 0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
}

.forum-uzenet-menu-gomb:hover,
.forum-uzenet-menu-gomb:focus-visible {
    color: #ffd24d;
    background: rgba(255, 210, 77, 0.12);
    outline: none;
}

.chat-urlap {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 12px 18px 16px;
    background: #202026;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: none;
}

.chat-eszkozok {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-eszkoz-gomb {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #f3f3f5;
    background: #151518;
    border: 1px solid #3c3c44;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.chat-eszkoz-gomb:hover {
    background: #2b2b33;
    border-color: #ffd24d;
    transform: translateY(-1px);
}

.chat-eszkoz-gomb img {
    width: 24px;
    height: 24px;
    display: block;
}

.chat-fajl-gomb input {
    display: none;
}

.emoji-panel,
.gif-panel {
    grid-column: 1 / -1;
    display: grid;
    gap: 5px;
    max-width: 100%;
    padding: 10px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
        #141417;
    border: 1px solid #3c3c44;
    border-radius: 10px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.48);
}

.emoji-panel {
    grid-template-columns: repeat(10, 42px);
    width: min(100%, 460px);
    max-height: 210px;
    overflow-y: auto;
}

.gif-panel {
    grid-template-columns: repeat(4, minmax(82px, 1fr));
    width: min(100%, 520px);
    max-height: 250px;
    overflow-y: auto;
}

.emoji-panel[hidden],
.gif-panel[hidden] {
    display: none;
}

.emoji-panel button {
    width: 42px;
    height: 42px;
    padding: 0;
    background: #202026;
    border: 1px solid transparent;
    border-radius: 9px;
    cursor: pointer;
}

.emoji-panel img {
    width: 28px;
    height: 28px;
    display: block;
    margin: auto;
}

.emoji-panel button:hover {
    background: #2f2f35;
    border-color: #ffd24d;
}

.gif-panel button {
    min-width: 0;
    padding: 6px;
    color: #ffffff;
    background: #202026;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
}

.gif-panel button:hover {
    background: #2f2f35;
    border-color: #ffd24d;
}

.gif-panel img {
    width: 100%;
    height: 76px;
    display: block;
    object-fit: cover;
    border-radius: 4px;
    background: #0e0e10;
}

.gif-panel span {
    display: block;
    margin-top: 5px;
    color: #d7d7df;
    font-size: 11px;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chat-elonezet {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(100%, 420px);
    padding: 9px;
    background:
        linear-gradient(135deg, rgba(255, 210, 77, 0.08), transparent),
        #141417;
    border: 1px solid #3c3c44;
    border-radius: 10px;
}

.chat-elonezet[hidden] {
    display: none;
}

.chat-elonezet img {
    width: 88px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    background: #0e0e10;
}

.chat-elonezet div {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    flex: 1;
}

.chat-elonezet strong {
    max-width: 290px;
    color: #ffffff;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chat-elonezet button {
    width: 30px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.chat-elonezet button img {
    width: 24px;
    height: 24px;
}

.chat-mezo label {
    display: block;
}

.chat-mezo textarea {
    min-height: 44px;
    max-height: 110px;
    padding: 12px 14px;
    color: var(--chat-szoveg);
    background: #141417;
    border: 1px solid #3c3c44;
    border-radius: 10px;
    font-size: 14px;
    resize: none;
}

.chat-mezo textarea:focus {
    border-color: #ffd24d;
    box-shadow: 0 0 0 3px rgba(255, 210, 77, 0.12);
}

.chat-urlap .forum-gomb[type="submit"] {
    width: 46px;
    min-width: 46px;
    min-height: 46px;
    align-self: center;
    padding: 0;
    color: var(--chat-halvany);
    background: #ffd24d;
    border-radius: 50%;
    border: 0;
}

.chat-urlap .forum-gomb[type="submit"]:hover {
    color: #ffffff;
    background: #ffe082;
    transform: translateY(-1px);
}

.chat-kuldes-gomb img {
    width: 25px;
    height: 25px;
    display: block;
}

.online-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 0 5px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.08;
}

.online-tag {
    display: inline;
    min-height: 0;
    padding: 0;
    color: #ffffff;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: inherit;
    font-weight: inherit;
    box-shadow: none;
}

.online-tag.admin {
    color: #ffd24d;
}

.online-tag::before {
    content: none;
    display: none;
}

.online-tag::after {
    content: ", ";
    color: #ffffff;
}

.online-tag:nth-last-child(1)::after {
    content: "";
}

.online-ures {
    color: var(--chat-halvany);
    font-size: 13px;
    line-height: 1.45;
}

.online-osszefoglalo,
.online-rejtett {
    margin: 18px -16px -16px;
    padding: 16px;
    color: #ffffff;
    border-top: 1px solid var(--chat-vonal);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.online-statisztika-panel {
    position: relative;
    margin-top: 28px;
    padding: 18px 16px 0;
    overflow: hidden;
    border-top: 4px solid #ffd24d;
}

.online-panel::after {
    display: none;
}

.online-panel h2 {
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.online-panel h2::before {
    content: none;
    display: none;
}

.online-statisztika-panel h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    text-transform: uppercase;
}

.online-statisztika-panel h2 span {
    color: #a8a8b3;
    font-size: 14px;
}

.online-statisztika {
    display: grid;
    gap: 7px;
    color: #d7d7df;
    font-size: 14px;
    line-height: 1.25;
}

.online-statisztika p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
}

.online-statisztika strong {
    color: #ffffff;
    font-weight: 900;
}

.nevnap-panel {
    display: none;
}

.nevnap-panel {
    min-height: 140px;
}

.nevnap-panel p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.nevnap-panel p + p {
    margin-top: 4px;
}

.nevnap-panel mark {
    color: #ffd24d;
    background: transparent;
    font-weight: 900;
}

.auth-checkbox {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 9px;
    color: #e9e7ee;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.auth-urlap .auth-checkbox input {
    width: 16px;
    height: 16px;
    padding: 0;
    accent-color: #ffd24d;
}

.forum-visszajelzes {
    left: auto;
    right: 12px;
    bottom: 12px;
    max-width: 292px;
    transform: translateY(10px);
    background: #2f2f35;
    border-color: var(--chat-vonal);
    border-radius: 4px;
}

.forum-visszajelzes.lathato {
    transform: translateY(0);
}

@media (max-width: 650px) {
    .forum-belso {
        width: 100%;
        max-width: none;
        height: auto;
        min-height: calc(100svh - 66px);
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px;
        place-content: start;
    }

    .chat-panel {
        grid-column: 1;
        grid-row: 2;
        height: calc(100svh - 220px);
        min-height: 430px;
    }

    .forum-oldalsav {
        position: static;
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        gap: 10px;
    }

    .chat-panel-fejlec {
        align-items: center;
        flex-direction: row;
    }

    .chat-urlap {
        grid-template-columns: 1fr auto;
    }
}

@media (max-width: 520px) {
    html,
    body {
        height: 100%;
        overflow: hidden;
    }

    .forum-app {
        height: 100svh;
        min-height: 100svh;
        overflow: hidden;
    }

    .forum-fejlec {
        min-height: 58px;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 8px 10px;
    }

    .forum-marka {
        min-width: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 1px;
    }

    .forum-marka strong {
        font-size: 18px;
    }

    .forum-marka span {
        max-width: 130px;
        font-size: 9px;
        line-height: 1.2;
        white-space: normal;
    }

    .forum-auth {
        min-width: 0;
        gap: 7px;
    }

    .forum-auth button,
    .forum-auth a,
    .forum-auth .masodlagos {
        min-height: 32px;
        padding: 0 9px;
        font-size: 11px;
        white-space: nowrap;
    }

    .profil-menu {
        gap: 8px;
    }

    .fejlec-profilkep {
        width: 32px;
        height: 32px;
    }

    .fejlec-profil-nev {
        max-width: 82px;
        font-size: 11px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .fejlec-ikon-gomb {
        display: none;
    }

    .profil-panel {
        position: fixed;
        top: 58px;
        right: 8px;
        width: min(340px, calc(100vw - 16px));
        max-height: calc(100svh - 72px);
        overflow-y: auto;
    }

    .forum-belso {
        min-height: 0;
        height: calc(100svh - 58px);
        overflow-y: auto;
        padding: 8px;
    }

    .forum-oldalsav {
        display: grid;
    }

    .online-panel,
    .online-statisztika-panel,
    .nevnap-panel {
        padding: 12px;
    }

    .online-panel h2,
    .online-statisztika-panel h2,
    .nevnap-panel h2 {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .online-osszefoglalo,
    .online-rejtett {
        margin: 12px -12px -12px;
        padding: 10px 12px;
        font-size: 12px;
    }

    .online-statisztika-panel {
        margin-top: 0;
    }

    .chat-panel {
        height: calc(100svh - 202px);
        min-height: 390px;
        border-radius: 8px;
    }

    .chat-panel-fejlec {
        min-height: 50px;
        padding: 10px 12px;
        gap: 8px;
    }

    .chat-panel-fejlec h1 {
        font-size: 15px;
    }

    .chat-statusz,
    .forum-gomb {
        min-height: 28px;
        padding: 0 8px;
        font-size: 11px;
    }

    .forum-uzenetek {
        padding: 12px 10px 8px;
    }

    .forum-uzenet {
        margin-right: 0;
        margin-left: 0;
        font-size: 13px;
        overflow-wrap: anywhere;
    }

    .forum-uzenet p,
    .forum-uzenet-nev {
        font-size: 13px;
    }

    .chat-inline-sticker,
    .forum-bekuldott-kep {
        max-width: min(100%, 230px);
        margin-left: 0;
    }

    .chat-urlap {
        gap: 8px;
        padding: 9px 10px 10px;
    }

    .chat-eszkozok {
        gap: 7px;
    }

    .chat-eszkoz-gomb {
        width: 34px;
        height: 34px;
    }

    .chat-eszkoz-gomb img {
        width: 21px;
        height: 21px;
    }

    .emoji-panel {
        grid-template-columns: repeat(6, minmax(34px, 1fr));
        width: 100%;
        max-height: 168px;
        padding: 7px;
    }

    .emoji-panel button {
        width: 100%;
        height: 36px;
    }

    .gif-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        max-height: 190px;
        padding: 7px;
    }

    .gif-panel img {
        height: 62px;
    }

    .chat-elonezet {
        width: 100%;
    }

    .chat-elonezet img {
        width: 66px;
        height: 52px;
    }

    .chat-mezo textarea {
        min-height: 40px;
        padding: 10px;
        font-size: 13px;
    }

    .chat-urlap .forum-gomb[type="submit"] {
        width: 42px;
        min-width: 42px;
        min-height: 42px;
    }

    .auth-modal-panel {
        width: 100%;
        max-height: calc(100svh - 28px);
        overflow-y: auto;
    }

    .auth-modal-bal {
        min-height: 150px;
        padding: 26px 18px;
    }

    .auth-modal-bal h2 {
        font-size: 42px;
    }

    .auth-modal-jobb {
        padding: 22px 18px;
    }

    .admin-modal-belso {
        padding: 22px 16px;
    }

    .admin-kereso div,
    .admin-felulet-racs,
    .admin-talalat {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .forum-auth {
        gap: 5px;
    }

    .forum-auth button,
    .forum-auth a,
    .forum-auth .masodlagos {
        padding: 0 7px;
        font-size: 10px;
    }

    .forum-marka span {
        display: none;
    }

    .chat-panel {
        height: calc(100svh - 178px);
        min-height: 360px;
    }
}

@media (min-width: 651px) and (max-width: 1040px) {
    .forum-belso {
        grid-template-columns: minmax(420px, 720px);
        place-content: center;
        padding: 24px 280px 24px 24px;
    }

    .chat-panel {
        grid-column: 1;
        height: min(70svh, 660px);
    }

    .forum-oldalsav {
        position: fixed;
        top: 90px;
        right: 10px;
        width: 250px;
    }
}

@media (min-width: 651px) and (max-width: 860px) {
    .forum-belso {
        grid-template-columns: minmax(0, 1fr);
        padding: 14px;
        place-content: start;
    }

    .forum-oldalsav {
        position: static;
        width: 100%;
        grid-row: 1;
    }

    .chat-panel {
        grid-row: 2;
    }
}
