/* .intro {
    max-width: 600px;
    margin: 0 auto 20px auto;
    opacity: 0.8;
}

body {
    margin: 0;
    font-family: Arial;
    background: linear-gradient(black, #111);
    color: white;
    text-align: center;
}

// FEJLÉC 
.hero {
    height: 250px;
    background: url('../kepek/header.jpg') center/cover no-repeat;
    filter: grayscale(100%);
}

// NAVBAR
.navbar {
    background: black;
    position: relative;
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.navbar li {
    position: relative;
}

.navbar a {
    color: white;
    padding: 15px;
    display: block;
    text-decoration: none;
}

.navbar a:hover {
    background: white;
    color: black;
}

.dropdown {
    position: relative;
    z-index: 2000;
}

// DROPDOWN JAVÍTÁS
.dropdown-content {
    display: none;
    position: absolute;
    background: black;
    min-width: 180px;
    left: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
    z-index: 2000;
}

// TARTALOM
.container {
    padding: 30px;
}

// KÁRTYÁK
.card {
    background: #1a1a1a;
    margin: 15px auto;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
} */

.intro {
    max-width: 600px;
    margin: 0 auto 20px auto;
    opacity: 0.8;
}

body {
    margin: 0;
    font-family: Arial;
    background: linear-gradient(black, #111);
    color: white;
    text-align: center;
}

/* FEJLÉC */
.hero {
    height: 250px;
    background: url('../kepek/zongd.JPG') center/cover no-repeat;
    filter: grayscale(100%);
}

/* NAVBAR */
.navbar {
    background: black;
    position: relative;
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.navbar li {
    position: relative;
}

/* linkek */
.navbar a {
    color: white;
    padding: 15px;
    display: block;
    text-decoration: none;
}

.navbar a:hover {
    background: white;
    color: black;
}

/* DROPDOWN ALAP */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: black;
    min-width: 180px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.2s ease;
    z-index: 2000;
}

/* megjelenítés hoverre */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* dropdown elemek */
.dropdown-content a {
    padding: 10px;
    display: block;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background: white;
    color: black;
}

.insta-button {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: bold;

    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-size: 300% 300%;

    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.insta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    background-position: right center;
}

/* TARTALOM */
.container {
    padding: 30px;
}

/* KÁRTYÁK */
.card {
    background: #1a1a1a;
    margin: 15px auto;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
}

.form-card {
    max-width: 400px;
    margin: auto;
    text-align: left;
}

.form-card label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
}

.form-card input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    margin-bottom: 10px;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;

    background: linear-gradient(45deg, #ff7a18, #af002d, #319197);
    color: white;
    font-weight: bold;

    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery-img {
    width: 200px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.1);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);

    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox img {
    max-width: 80%;
    max-height: 70%;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox button {
    margin: 10px;
    padding: 10px 15px;
    cursor: pointer;
}

.lightbox-info {
    color: white;
    text-align: center;
}

.footer {
    text-align: center;
    padding: 20px;
    background: black;
    margin-top: 40px;
}

/* SLIDER */
.slider img {
    width: 500px;
    border-radius: 10px;
    transition: opacity 0.8s ease;
}

/* MENU GRID */
.menu-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.menu-card {
    background: #1a1a1a;
    padding: 15px;
    width: 150px;
    border-radius: 10px;
    transition: 0.3s;
}

.menu-card:hover {
    transform: scale(1.1);
    background: #222;
}

/* INSTAGRAM BUTTON (már megvan, csak biztos) */
.insta-button {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    transition: 0.3s;
}

.insta-button:hover {
    transform: translateY(-3px) scale(1.05);
}

/* HÍRDETÉS */
.ad-card {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.video-main iframe {
    width: 100%;
    max-width: 700px;
    height: 400px;
    border-radius: 10px;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.video-card {
    width: 250px;
    background: #1a1a1a;
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s;
}

.video-card:hover {
    transform: scale(1.05);
}

.video-main iframe {
    width: 100%;
    max-width: 700px;
    height: 400px;
    border-radius: 10px;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.video-card {
    width: 260px;
    background: #1a1a1a;
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s;
}

.video-card:hover {
    transform: scale(1.05);
}

.video-card iframe {
    width: 100%;
    height: 150px;
    border-radius: 8px;
}

.chat-box {
    max-width: 600px;
    margin: auto;
}

.chat-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.chat-form input,
.chat-form textarea {
    padding: 10px;
    border-radius: 6px;
    border: none;
}

.chat-form button {
    padding: 10px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(45deg,#ff7a18,#af002d);
    color: white;
    cursor: pointer;
}

.upload-btn {
    background: #333;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
}

.chat-message {
    background: #1a1a1a;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.chat-message img {
    max-width: 100%;
    margin-top: 10px;
    border-radius: 8px;
}

.chat-form button {
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(45deg,#ff7a18,#af002d);
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.chat-form button:hover {
    transform: scale(1.05);
}

.upload-btn {
    background: #333;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.upload-btn:hover {
    transform: scale(1.05);
    background: #444;
}

.logo img {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px;
    opacity: 0.8;
    cursor: pointer;
    transition: 0.3s;
}

.logo img:hover {
    transform: scale(1.1);
    opacity: 1;
}

.slider img {
    width: 500px;
    border-radius: 10px;
    transition: 0.4s;
}

.slider img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.menu-card {
    background: #1a1a1a;
    padding: 20px;
    width: 180px;
    border-radius: 10px;
    transition: 0.3s;
    text-align: center;
    cursor: pointer;
}

.menu-card h4 {
    margin: 0;
}

.menu-card:hover {
    transform: scale(1.1);
}

.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9999;
}

.logo img {
    width: 60px;
    opacity: 0.85;
    transition: 0.3s;
}

.logo img:hover {
    transform: scale(1.1);
    opacity: 1;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: black;
    min-width: 180px;
    flex-direction: column;
}

.dropdown-content li {
    width: 100%;
}

.dropdown-content a {
    display: block;
    padding: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}


body.loaded {
    opacity: 1;
}

.slider img {
    width: 500px;
    border-radius: 10px;
    transition: opacity 0.6s ease, transform 0.3s ease;
}

.slider img:hover {
    transform: scale(1.05);
}

.chat-box {
    max-width: 600px;
    margin: auto;
}

.chat-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.chat-form input,
.chat-form textarea {
    padding: 10px;
    border-radius: 6px;
    border: none;
}

.chat-form button {
    padding: 10px;
    border-radius: 6px;
    border: none;
    background: linear-gradient(45deg,#ff7a18,#af002d);
    color: white;
    cursor: pointer;
}

/* BUBBLE */
.chat-bubble {
    background: #2a2a2a;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 10px;
    text-align: left;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    opacity: 0.7;
}

.chat-bubble img {
    max-width: 100%;
    margin-top: 10px;
    border-radius: 8px;
}

.chat-actions {
    margin-top: 8px;
    font-size: 14px;
    cursor: pointer;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.insta-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.insta-grid img:hover {
    transform: scale(1.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
}

.img-title {
    font-size: 14px;
    margin-top: 5px;
}

/* LIGHTBOX */
#lightbox {
    display: none;
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-content {
    text-align: center;
    max-width: 80%;
}

#lightbox img {
    max-width: 100%;
    border-radius: 10px;
}

#lightbox-title {
    margin-top: 10px;
}

#lightbox-desc {
    font-size: 14px;
    opacity: 0.8;
}

#lightbox-counter {
    margin-top: 5px;
    font-size: 12px;
    opacity: 0.6;
}

#lightbox {
    display: none;
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.92);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* animáció */
#lightbox.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.lightbox-content {
    text-align: center;
    max-width: 80%;
}

#lightbox img {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

#lightbox img:hover {
    transform: scale(1.02);
}

/* NAV GOMBOK */
#prev, #next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* hover effekt */
#prev:hover, #next:hover {
    background: white;
    color: black;
    transform: translateY(-50%) scale(1.2);
}

#prev {
    left: 20px;
}

#next {
    right: 20px;
}

/* CLOSE GOMB */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    cursor: pointer;
    color: white;
    transition: transform 0.3s ease;
}

.close:hover {
    transform: scale(1.3);
}

/* HERO (fejléc kép) */
.hero {
    height: 260px;
    background: url('../kepek/zongd.JPG') center/cover no-repeat;
    filter: grayscale(100%);
    position: relative;
    transition: all 0.4s ease;
}

/* elhalványulás */
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #111);
}

/* NAVBAR lebegő */
.navbar {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* amikor görgetsz */
.navbar.scrolled {
    background: rgba(0,0,0,0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
}

.navbar a {
    color: white;
    padding: 15px 20px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* hover effekt */
.navbar a:hover {
    transform: translateY(-3px) scale(1.05);
    background: white;
    color: black;
    border-radius: 8px;
}

/* TARTALOM kiemelés */
.dropdown > a {
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* SLIDER */
.slider-box img {
    width: 350px;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.slider-box img:hover {
    transform: scale(1.05);
}

/* BUBORÉK */
.intro-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    max-width: 350px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* hover */
.intro-box:hover {
    transform: translateY(-5px) scale(1.03);
    background: rgba(255,255,255,0.1);
}

#slide {
    transition: opacity 0.3s ease;
}

/* HERO LOGO */
.logo img {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
}

/* HERO FADE */
.hero {
    height: 260px;
    background: url('../kepek/zongd.JPG') center/cover no-repeat;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #111);
}

/* NAVBAR */
.navbar {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0,0,0,0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

/* MENÜ HOVER */
.navbar a:hover {
    transform: translateY(-3px) scale(1.05);
    background: white;
    color: black;
    border-radius: 8px;
}

/* DROPDOWN KIEMELÉS */
.dropdown > a {
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
}

/* HERO CONTENT FLEX */
.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* SLIDER */
#slide {
    width: 450px;
    border-radius: 15px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#slide:hover {
    transform: scale(1.05);
}

/* INTRO BOX */
.intro-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    max-width: 450px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.intro-box:hover {
    transform: translateY(-5px) scale(1.03);
    background: rgba(255,255,255,0.1);
}

.container {
    max-width: 1200px;
    margin: auto;
}

.hero-content {
    gap: 80px; /* több hely */
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.user-menu {
    position: relative;
    cursor: pointer;
}

.user-menu:hover .dropdown-content {
    display: block;
}

.form-box {
    max-width: 400px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-box input {
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 14px;
    background: #222;
    color: white;
    transition: 0.3s;
}

.form-box input:focus {
    background: #333;
    transform: scale(1.03);
}

.form-box button {
    border: none;
    cursor: pointer;
}

.user-area {
    display: flex;
    align-items: center;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    transition: 0.3s;
}

.user-menu:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-box {
    max-width: 400px;
    width: 100%;
    margin: 40px auto;
}

input[type="file"] {
    background: #222;
    padding: 10px;
    border-radius: 8px;
    color: white;
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* KÖZÉPRE KÁRTYA */
.auth-card {
    max-width: 420px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* FORM */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* INPUT */
.auth-form input {
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #222;
    color: white;
    transition: 0.3s;
}

.auth-form input:focus {
    background: #333;
    transform: scale(1.03);
}

/* FILE INPUT */
.auth-form input[type="file"] {
    background: transparent;
}

/* BUTTON */
.auth-form button {
    padding: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    background: linear-gradient(90deg, #ff5f6d, #ffc371);
    color: white;
    transition: 0.3s;
}

.auth-form button:hover {
    transform: scale(1.05);
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 14px 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

.input-group label {
  position: absolute;
  left: 12px;
  top: 14px;
  color: #888;
  font-size: 14px;
  transition: 0.2s;
  pointer-events: none;
  background: white;
  padding: 0 5px;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
  color: #0084ff;
}

.file-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.file-btn {
  background: #0084ff;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
}

#fileName {
  font-size: 13px;
  color: #555;
}

.input-group input {
  width: 100%;
  padding: 14px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
  background: #f9f9f9;
  transition: 0.2s;
}

/* fókusz */
.input-group input:focus {
  border-color: #666;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

/* label szín */
.input-group label {
  color: #999;
}

/* label fókuszkor */
.input-group input:focus + label {
  color: #333;
}

.input-group input {
  color: #000; /* fekete szöveg */
}

.input-group input::placeholder {
  color: #999;
}

.user-menu {
  position: relative;
}

.user-menu:hover .dropdown-content {
  display: block;
}

.dropdown-content {
  position: absolute;
  z-index: 9999;
}

.avatar,
.avatar-fallback {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 8px;
}

.avatar {
  object-fit: cover;
}

.avatar-fallback {
  background: #0084ff;
  color: white;
}

.user-menu {
  position: relative;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  min-width: 150px;
  z-index: 9999;
  top: 100%;
  left: 0;
}

.dropdown-content.show {
  display: block;
}

.user-menu {
  position: relative;
}

.user-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 160px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.dropdown-content.show {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: black;
}

.dropdown-content a:hover {
  background: #f2f2f2;
}

.avatar,
.avatar-fallback {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.avatar {
  object-fit: cover;
}

.avatar-fallback {
  background: #0084ff;
  color: white;
}

.user-menu {
  position: relative;
}

.user-menu:hover .dropdown-content {
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 160px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.user-menu {
  position: relative;
  cursor: pointer;
}

.user-menu:hover .dropdown-content {
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.dropdown-content a {
  display: block;
  padding: 10px;
  color: black;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #f2f2f2;
}

.navbar .dropdown-content {
  background: #222;
}

.navbar .dropdown-content a {
  color: white;
}

.navbar .dropdown-content a:hover {
  background: #444;
}

.user-menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.user-menu:hover .dropdown-content {
  display: block;
}

.user-menu .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  min-width: 180px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.user-menu .dropdown-content a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: black;
}

.user-menu .dropdown-content a:hover {
  background: #f2f2f2;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-fallback {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0084ff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.navbar .dropdown {
  position: relative;
}

.navbar .dropdown-content {
  display: none;
  position: absolute;
  background: white;
  min-width: 180px;
  z-index: 9999;
}

.navbar .dropdown:hover .dropdown-content {
  display: block;
}

.avatar,
.avatar-fallback {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.navbar .dropdown {
  position: relative;
}

.navbar .dropdown-content {
  display: none;
  position: absolute;
  background: #222; /* sötét háttér */
  min-width: 200px;
  z-index: 9999;
}

.navbar .dropdown:hover .dropdown-content {
  display: block;
}

.navbar .dropdown-content a {
  color: white;
  padding: 10px;
  display: block;
  text-decoration: none;
}

.navbar .dropdown-content a:hover {
  background: #444;
}

.user-menu .user-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

/* Form doboz (login + profil) */
.form-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Input mezők egységes stílus */
.form-box input[type="text"],
.form-box input[type="email"],
.form-box input[type="password"],
.form-box input[type="file"] {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

/* File input label szöveg */
.form-box label {
    font-size: 14px;
    text-align: left;
    margin-top: 5px;
}

/* File name display */
#fileName {
    font-size: 13px;
    color: #666;
    text-align: left;
}

/* Gomb (login + profil ugyanaz) */
.insta-button {
    padding: 12px;
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.insta-button:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.form-box {
    background: #ffffff;
    background: #fafafa;
}

.forum-wrapper {
    display: flex;
    gap: 40px;
    padding: 40px;
}

.forum-left {
    width: 30%;
}

.forum-right {
    width: 70%;
}

.forum-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.forum-form input,
.forum-form textarea {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.forum-form button {
    padding: 10px;
    border: none;
    background: black;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

.forum-upload-btn {
    background: #eee;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
}

.forum-chat-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.forum-bubble {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 12px;
}

.forum-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.forum-img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

.forum-actions {
    margin-top: 10px;
    font-size: 14px;
}

/* ===== FORUM LAYOUT FIX ===== */
.forum-page {
    width: 100%;
}

.forum-layout {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 40px;
    width: 100%;
}

/* BAL OLDAL */
.forum-col-left {
    width: 320px;
    flex-shrink: 0;
}

/* JOBB OLDAL */
.forum-col-right {
    flex: 1;
    width: auto;
}

/* NE legyen középre igazítás */

/* chat-box ne legyen középen */
.forum-col-right .chat-box {
    width: 100%;
    margin: 0 !important;
}

/* form fix */
.forum-col-left .chat-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* textarea méret */
.forum-col-left textarea {
    min-height: 100px;
    resize: vertical;
}

/* ====== FORUM HARD FIX ====== */

.forum-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* FLEX KÉNYSZERÍTÉS */
.forum-layout {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 40px;
}

/* BAL OLDAL (FORM) */
.forum-col-left {
    width: 350px !important;
    flex: 0 0 350px !important;
}

/* JOBB OLDAL (CHAT) */
.forum-col-right {
    flex: 1 !important;
    min-width: 0 !important;
}

/* FORM NE NYÚLJON KI */
.forum-col-left .chat-form {
    width: 100% !important;
}

.forum-col-left input,
.forum-col-left textarea,
.forum-col-left button,
.forum-col-left .upload-btn {
    width: 100% !important;
    box-sizing: border-box;
}

/* CHAT NE LEGYEN KÖZÉPEN */
.forum-col-right .chat-box {
    width: 100% !important;
    margin: 0 !important;
}

/* CÍMEK BALRA */
.forum-col-left h2,
.forum-col-right h2 {
    text-align: left !important;
}

/* ===== FORUM ISOLATION FIX ===== */

.forum-page-no-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;

    /* EZ KIKAPCSOLJA A CONTAINER HATÁSÁT */
    all: unset;
    display: block;
}

/* ÚJRAÉPÍTJÜK CSAK AMI KELL */
.forum-layout {
    display: flex;
    gap: 40px;
}

/* BAL */
.forum-col-left {
    width: 350px;
    flex-shrink: 0;
}

/* JOBB */
.forum-col-right {
    flex: 1;
}

/* FORM */
.forum-col-left .chat-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.forum-col-left input,
.forum-col-left textarea,
.forum-col-left button,
.forum-col-left .upload-btn {
    width: 100%;
}

.forum-layout {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.forum-layout.centered {
    justify-content: center;
}

.forum-col-left {
    width: 35%;
}

.forum-layout.centered .forum-col-right {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.forum-layout.centered .forum-col-left {
    display: none;
}

.not-logged-in .forum-layout {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.not-logged-in .forum-col-right {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.not-logged-in .forum-col-left {
    display: none;
}

.like-form {
    display: inline;
}

.like-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.like-users {
    display: none;
    font-size: 12px;
    opacity: 0.7;
}

.chat-actions:hover .like-users {
    display: block;
}

/* MOBIL */
@media (max-width: 768px) {
    .forum-layout {
        flex-direction: column;
    }

    .forum-col-left,
    .forum-col-right {
        width: 100%;
    }
}

.forum-wrapper {
    display: flex;
    justify-content: center;
}

.forum-layout {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    width: 100%;
    justify-content: center;
}

.forum-col-left,
.forum-col-right {
    flex: 1;
}

.chat-bubble {
    background: #1e1e1e;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.chat-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.like-btn {
    background: #2a2a2a;
    border: none;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.like-btn:hover {
    background: #ff4d6d;
}

.reply-toggle {
    background: #2a2a2a;
    border: none;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
}

.reply-box {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background: #111;
    border-radius: 8px;
}

.reply {
    font-size: 13px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.like-users {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 5px;
}

/* MOBIL */
@media (max-width: 768px) {
    .forum-layout {
        flex-direction: column;
    }
}


.forum-page-no-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.forum-wrapper {
    width: 100%;
    max-width: 900px;
}

.like-btn {
    background: #222;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.like-btn.liked {
    background: #ff2d55;
}

.like-dropdown {
    display: none;
    max-height: 100px;
    overflow-y: auto;
    background: #111;
    padding: 8px;
    border-radius: 8px;
    position: absolute;
}

.chat-actions:hover .like-dropdown {
    display: block;
}

.reply-bubble {
    background: #181818;
    padding: 10px;
    border-radius: 10px;
    margin-top: 8px;
}

.reply-to {
    font-size: 12px;
    opacity: 0.5;
}

.forum-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.forum-layout {
    display: flex;
    gap: 40px;
}

.chat-tools {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.tool-btn {
    background: #222;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
}

.send-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(90deg,#ff7a00,#ff004c);
    border: none;
    border-radius: 10px;
    color: white;
}

.like-btn {
    background: #222;
    border-radius: 20px;
    padding: 5px 10px;
}

.like-btn.liked {
    background: #ff2d55;
}

.reply-btn {
    background: #222;
    border-radius: 20px;
    padding: 5px 10px;
}

.reply-box {
    display: none;
    margin-top: 10px;
}

.reply-bubble {
    background: #111;
    padding: 8px;
    border-radius: 8px;
    margin-top: 5px;
}

/* ===== FORUM FIX DESIGN ===== */

.forum-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
}

.forum-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

/* BAL OLDAL */
.forum-col-left {
    position: sticky;
    top: 100px;
}

/* JOBB OLDAL */
.forum-col-right {
    width: 100%;
}

/* ===== CHAT BUBBLE ===== */

.chat-bubble {
    background: #1c1c1e;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 15px;
    transition: 0.2s;
}

.chat-bubble:hover {
    background: #242426;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    opacity: 0.8;
}

.chat-header strong {
    cursor: pointer;
    transition: 0.2s;
}

.chat-header strong:hover {
    color: #ff2d55;
}

/* ===== TEXTAREA ===== */

textarea {
    width: 100%;
    height: 100px;
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 10px;
    color: white;
    resize: none;
}

/* ===== TOOLBAR ===== */

.chat-tools {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    gap: 10px;
}

/* 5 emoji blokk */
.emoji-bar {
    display: flex;
    gap: 5px;
    flex: 1;
}

.emoji-btn {
    flex: 1;
    background: #222;
    border: none;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.emoji-btn:hover {
    background: #333;
}

/* KÉP GOMB */
.upload-btn {
    background: #222;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

/* KÜLDÉS */
.send-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(90deg,#ff7a00,#ff004c);
    color: white;
    font-weight: bold;
}

/* ===== ACTIONS ===== */

.chat-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.like-btn, .dislike-btn, .reply-like-btn, .reply-dislike-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    color: #666;
}

.like-btn:hover, .reply-like-btn:hover {
    background: rgba(255, 45, 85, 0.1);
    color: #ff2d55;
}

.dislike-btn:hover, .reply-dislike-btn:hover {
    background: rgba(255, 45, 85, 0.1);
    color: #ff2d55;
}

.like-btn.liked, .reply-like-btn.liked {
    color: #ff2d55;
    font-weight: 600;
}

.dislike-btn.disliked, .reply-dislike-btn.disliked {
    color: #ff2d55;
    font-weight: 600;
}

.like-count, .dislike-count {
    color: #fff;
    background: transparent;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 4px;
    min-width: 20px;
    text-align: center;
    display: inline-block;
    transition: all 0.2s ease;
}

.like-btn.liked .like-count, .reply-like-btn.liked .like-count {
    background: #ff2d55;
    color: #000;
}

.dislike-btn.disliked .dislike-count, .reply-dislike-btn.disliked .dislike-count {
    background: #ff2d55;
    color: #000;
}

.chat-actions, .reply-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
}

.dislike-btn.disliked {
    color: #ff2d55;
}

.reply-box {
    display: none;
    margin-top: 10px;
}

.reply-bubble {
    background: #111;
    padding: 10px;
    border-radius: 10px;
    margin-top: 5px;
}

/* ===== LIKE/DISLIKE DROPDOWN ===== */
.like-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 8px;
}

.like-dropdown-toggle {
    background: #f0f2f5;
    border: none;
    border-radius: 6px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 12px;
    color: #65676b;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.like-dropdown-toggle:hover {
    background: #e4e6eb;
    color: #050505;
}

.like-dropdown-icon {
    font-size: 14px;
    font-weight: bold;
}

.like-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e4e6eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 280px;
    max-width: 320px;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 4px;
}

.like-dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.like-dropdown-content::-webkit-scrollbar-track {
    background: #f0f2f5;
    border-radius: 3px;
}

.like-dropdown-content::-webkit-scrollbar-thumb {
    background: #cbd0d5;
    border-radius: 3px;
}

.like-dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}

.likes-section, .dislikes-section {
    padding: 12px;
    border-bottom: 1px solid #e4e6eb;
}

.likes-section:last-child, .dislikes-section:last-child {
    border-bottom: none;
}

.likes-section h4, .dislikes-section h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #050505;
}

.likes-list, .dislikes-list {
    max-height: 150px;
    overflow-y: auto;
}

.user-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.user-item:hover {
    background: #f0f2f5;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.user-name {
    font-size: 14px;
    color: #050505;
    font-weight: 500;
}

.no-users {
    color: #65676b;
    font-size: 14px;
    font-style: italic;
    padding: 8px 0;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .like-dropdown-toggle {
        background: #3a3b3c;
        color: #e4e6eb;
    }
    
    .like-dropdown-toggle:hover {
        background: #4e4f50;
        color: #ffffff;
    }
    
    .like-dropdown-content {
        background: #242526;
        border-color: #3e4042;
    }
    
    .likes-section h4, .dislikes-section h4 {
        color: #e4e6eb;
    }
    
    .user-item:hover {
        background: #3a3b3c;
    }
    
    .user-name {
        color: #e4e6eb;
    }
    
    .no-users {
        color: #b0b3b8;
    }
}

/* ===== TOOLTIP STYLES ===== */

.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.tooltip.show {
    opacity: 1;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

/* Kép eltávolító gomb hover */
#removeImage:hover {
    background: #ff3838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
}

/* ===== MOBIL ===== */

@media (max-width: 768px) {
    .forum-layout {
        grid-template-columns: 1fr;
    }
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    vertical-align: middle;
}

.profile-pic-reply {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
    vertical-align: middle;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reply-bubble {
    background-color: #2e2e2e; /* sötétebb, de harmonizáljon */
    border-radius: 12px;
    padding: 10px;
    margin: 8px 0 0 50px; /* behúzás a profilkép mellé */
    color: #eee;
    font-size: 0.9rem;
}

.reply-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-fallback {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff5722; /* például narancsos */
    color: white;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.user-name {
    font-weight: 700;
    color: white;
}

.message-time {
    margin-left: auto;
    font-size: 0.85rem;
    color: #bbb;
}

.reply-form input[type="text"] {
    background-color: #fff; /* fehér háttér */
    color: #000; /* fekete szöveg */
    padding: 6px 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 70%;
}
.reply-form button {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.send-btn{
    display:inline-block;
    background:#ff4757;
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
}

.reply-form button{
    background:#3742fa;
    color:#fff;
    border:none;
    padding:8px 14px;
    border-radius:6px;
    cursor:pointer;
}

/* Általános hover animáció */
.hover-btn {
    transition: all 0.2s ease;
    cursor: pointer;
}

/* amikor ráviszed az egeret */
.hover-btn:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* gomb kinézet */
.send-btn,
.emoji-btn,
.upload-btn {
    border: none;
    background: #222;
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
}

/* hover külön a küldésre */
.send-btn:hover {
    background: #4CAF50;
}

/* emoji hover */
.emoji-btn:hover {
    background: #444;
}

/* GOMB ALAP */
.send-btn,
.emoji-btn,
.upload-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #2b2b2b;
    color: white;
    border: none;

    padding: 8px 12px;
    border-radius: 10px;

    cursor: pointer;
    transition: all 0.2s ease;

    font-size: 16px;
}

/* HOVER EFFEKT */
.send-btn:hover,
.emoji-btn:hover,
.upload-btn:hover {
    transform: translateY(-2px) scale(1.08);
    background: #444;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* KÜLDÉS EXTRA */
.send-btn:hover {
    background: #4CAF50;
}

/* EMOJI KICSIT KÜLÖN */
.emoji-btn {
    background: #333;
}

.emoji-btn:hover {
    background: #555;
}

button,
.upload-btn {
    transition: all 0.2s ease !important;
}

button:hover,
.upload-btn:hover {
    transform: scale(1.1) !important;
    opacity: 1 !important;
}

.hover-btn {
    opacity: 0.6 !important;
    transform: scale(0.95) !important;
    transition: all 0.2s ease !important;
}

.hover-btn:hover {
    opacity: 1 !important;
    transform: scale(1.15) !important;
}

.flex-reply {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.flex-reply input[type="text"] {
    flex: 1;
}

.reply-form.flex-reply {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.reply-input {
    flex: 1 !important;
    padding: 8px !important;
}

.reply-form.flex-reply input {
    width: auto !important;
}

.reply-form.flex-reply input {
    width: auto !important;
}

.send-btn {
    background: #ff4da6 !important;
    color: white !important;
    border: none !important;
    padding: 10px 16px !important;
    border-radius: 12px !important;
    font-weight: bold !important;
    transition: 0.2s !important;
}

.send-btn:hover {
    background: #ff1a8c !important;
    transform: scale(1.05);
}

.reply-form .send-btn {
    padding: 6px 10px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
    background: #3b82f6 !important; /* kék */
}

.reply-form .send-btn:hover {
    background: #2563eb !important;
}

.upload-btn {
    background: #2a2a3d;
    padding: 6px 10px;
    border-radius: 8px;
    transition: 0.2s;
}

.upload-btn:hover {
    background: #3b3b5a;
}

.reply-form.flex-reply {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.reply-form.flex-reply input {
    margin: 0 !important;
}

.reply-form.flex-reply {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 8px;
}

.reply-input {
    flex: 1 !important;
    height: 40px !important;
    resize: none !important;
    padding: 10px !important;
    border-radius: 12px !important;
    border: none !important;
    background: #1e1e2f !important;
    color: white !important;
}

.reply-form .send-btn {
    padding: 6px 10px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
    background: #3b82f6 !important;
}

.reply-form .send-btn:hover {
    background: #2563eb !important;
}

.reply-form .send-btn {
    padding: 6px 10px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
    background: #3b82f6 !important;
}

.reply-form .send-btn:hover {
    background: #2563eb !important;
}

.reply-form .upload-btn {
    padding: 6px 8px !important;
    font-size: 14px;
}

button.send-btn {
    background: #ff4da6 !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 16px !important;
    border-radius: 12px !important;
    font-weight: bold !important;
}

button.send-btn:hover {
    background: #ff1a8c !important;
    transform: scale(1.05) !important;
}

.reply-form {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.reply-form textarea,
.reply-form input {
    flex: 1 !important;
    background: #1e1e2f !important;
    color: white !important;
    border-radius: 12px !important;
    border: none !important;
    padding: 10px !important;
}

/* ==================== */
/* MOBIL OPTIMALIZÁCIÓ */
/* ==================== */

/* ALAP MOBIL BEÁLLÍTÁSOK */
* {
    -webkit-tap-highlight-color: transparent; /* Koppintás jelölés eltüntetése */
}

body {
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%; /* Megakadályozza a szöveg nagyítását forgatáskor */
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* MOBIL MENÜ GOMB (hamburger) - EZT ADD HOZZÁ, HA NINCS */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
}

/* TABLET (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
}

/* MOBIL (max 768px) */
@media (max-width: 768px) {
    
    /* ÁLTALÁNOS */
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    /* FEJLÉC MOBIL */
    header {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    header img {
        max-width: 80%;
        margin-bottom: 10px;
    }
    
    /* NAVIGÁCIÓ MOBIL */
    nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    nav a {
        display: block;
        padding: 12px;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        background: #f5f5f5;
    }
    
    /* GALÉRIA MOBIL */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .gallery-item {
        margin-bottom: 15px;
    }
    
    .gallery-img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        border-radius: 10px;
    }
    
    /* LIGHTBOX MOBIL */
    #lightbox {
        padding: 10px;
    }
    
    .lightbox-content {
        width: 95%;
        max-height: 90vh;
    }
    
    #lightbox-img {
        max-height: 50vh;
        object-fit: contain;
    }
    
    #lightbox-title {
        font-size: 18px;
    }
    
    #lightbox-desc {
        font-size: 14px;
    }
    
    #prev, #next {
        font-size: 20px;
        padding: 10px 15px;
        background: rgba(0,0,0,0.6);
        border-radius: 50%;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* TÁBLÁZATOK MOBIL */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 14px;
    }
    
    th, td {
        padding: 8px;
        min-width: 80px;
    }
    
    /* ŰRLAPOK MOBIL */
    input, select, textarea {
        font-size: 16px; /* Megakadályozza a zoomolást iPhone-on */
        padding: 12px;
    }
    
    button, .button {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        margin: 5px 0;
    }
    
    /* KÉPALÁB */
    footer {
        text-align: center;
        padding: 20px 15px;
    }
    
    footer p {
        font-size: 12px;
    }
}

/* KIS MOBIL (max 480px) */
@media (max-width: 480px) {
    h1 {
        font-size: 22px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    .gallery-img {
        aspect-ratio: 4 / 3;
    }
    
    .img-title {
        font-size: 14px;
    }
    
    #prev, #next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* TOUCH OPTIMALIZÁCIÓ */
@media (hover: none) and (pointer: coarse) {
    /* Nagyobb koppintási felület */
    a, button, .gallery-item, nav a {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Gombok vizuális visszajelzése koppintáskor */
    button:active, a:active, .gallery-item:active {
        opacity: 0.7;
        transform: scale(0.98);
        transition: 0.05s;
    }
}

/* KÉPERNYŐ FORGATÁS (landscape mode) */
@media (max-width: 900px) and (orientation: landscape) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    #lightbox-img {
        max-height: 60vh;
    }
    
    header {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Hamburger menü - csak mobilon látszik */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    nav {
        display: none !important;
    }
    
    nav.show {
        display: flex !important;
    }
}