body {
    margin: 0;
    font-family: 'Abril Fatface', serif;
    background-color: #fdf7eb;
    color: #000;
}

header {
    padding: 10px 20px; 
    border-bottom: 1px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.author-name {
  color: #e74c3c; /* Vagy más piros árnyalat */
  font-family: 'Helvetica', serif;
    text-decoration: none;
  font-weight: 700;
  letter-spacing: 0px;
  padding-top: -80px;
}

.author-name2 {
  color: #e74c3c; /* Vagy más piros árnyalat */
  font-family: 'Helvetica', serif;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0px;
  padding-bottom: -80px;
  margin-top: 0.2em;
    margin-bottom: 0.2em;
    font-size: 1.2em;
}


nav {
    background-color: #2c4049;
    color: white;
    display: flex;
    justify-content: flex-start; /* Balra igazítás */
    align-items: center;
    padding: 10px 30px 10px 60px; /* Bal oldali padding növelve */
    font-weight: bold;
    margin-left: -3px; /* Kompenzálja a pöttyös vonal miatti eltolást */
}

.nav-item {
    padding: 0 15px;
    position: relative;
    white-space: nowrap;
}

/* Add to your existing CSS */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 100;
    border-radius: 4px;
    padding: 8px 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
}


.nav-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: rgba(255,255,255,0.3);
}
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 1rem;
  }
  
  .nav-left, .nav-right {
    width: 100%;
    justify-content: center;
    margin: 0.5rem 0;
  }
  
  .search-container {
    flex-direction: column;
    width: 100%;
  }
  
  .search-wrapper, .filter-dropdown {
    width: 100%;
  }
}
.search-container {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 0 15px;
    margin-left: auto; /* A keresősávot jobbra tolja */
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 10px;
    color: #555;
}

.search-bar {
    padding: 5px 10px 5px 35px;
    border-radius: 20px;
    border: none;
    font-family: 'Abril Fatface', serif;
    height: 30px;
    min-width: 200px;
    margin-left: 3px; /* Pontosan a pöttyös vonalhoz igazítás */
}

.filter-dropdown {
    padding: 5px 10px;
    border-radius: 20px;
    border: none;
    font-family: 'Abril Fatface', serif;
    cursor: pointer;
    height: 30px;
}
.site-logo {
    flex-shrink: 0;
    margin: 0 20px;
}

.site-logo img {
    height: 80px;
    width: auto;
}

.kategoria-logo {
    flex-shrink: 0;
}

.kategoria-logo img {
  height: 24px;
  width: auto;
}
.article .kategoria-logo img {
  height: 30px;
  width: auto;
  margin-bottom: 4px;
}

#datum-napnev {
    font-size: 14px;
    text-align: left;
    flex-shrink: 0;
    margin-right: 20px;
    font-family: 'Abril Fatface', serif;
}
#clock {
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
    color: #fff;
}

/* Hőmérséklet színek */
.delutan.piros {
  color: #ff0000 !important;
  font-weight: bold;
}
.delutan.zold {
  color: #00aa00 !important;
  font-weight: bold;
}
.delutan.kek {
  color: #0000ff !important;
  font-weight: bold;
}
.idojaras {
    position: relative;
    text-align: right;
    font-family: 'Abril Fatface', serif;
}

.weather-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #f8f8f8;
    border-radius: 5px;
    margin-top: 5px;
}

.idojaras.open .weather-details {
    max-height: 100px;
    padding: 5px;
}

.idojaras.open .toggle-icon {
    transform: rotate(180deg);
}

.toggle-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.title-bar {
  background-color: #f8f8f8; /* Ugyanaz a háttérszín */
  padding: 1rem 0;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.title-bar h1 {
    display: none;
}

.pelican-img {
    display: none;
}

.title-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 10px;
    gap: 20px;
}

.motto {
    font-size: 12px;
    font-style: italic;
    position: absolute;
    top: 10px;
    right: 20px;
    max-width: 300px;
    text-align: right;
    font-family: 'Abril Fatface', serif;
}

.title-bar h1 {
    font-family: 'Abril Fatface', serif;
    font-size: 40px;
    margin: 0;
}

nav {
    background-color: #2c4049;
    color: white;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 5px;
    font-weight: bold;
    font-family: 'Abril Fatface', serif;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
}

.nav-right {
  gap: 2rem; /* Térköz a menüpontok között */
}


.search-bar {
    margin-left: 20px;
    padding: 5px 10px;
    border-radius: 20px;
    border: none;
}

.content {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px;
    padding-left: 60px; 
    gap: 10px;             /* kisebb gap */
    row-gap: 10px;         /* kisebb függőleges térköz */
    column-gap: 10px; 
}

.article {
  margin-bottom: 8px;    /* kisebb alsó margó */
  padding: 8px;   
    width: 300px;
    padding: 10px;
    border-left: 2px dotted #394E58;
    font-family: 'Abril Fatface', serif;
}

.article img {
    width: 100%;
    height: 150px;
    background-color: #ccc;
}

.category {
    color: white;
    background: #3f308d;
    display: inline-block;
    padding: 2px 6px;
    font-size: 12px;
    margin: 5px 0;
    font-family: 'Abril Fatface', serif;
}

.pelican-img {
    position: absolute;
    bottom: 50px;
    left: 30px;
}

.pelican-img img {
    width: 100px;
    border-radius: 50%;
    background: #cce9f6;
    padding: 10px;
}

.weather {
    text-align: right;
    font-size: 12px;
    line-height: 1.5;
}

.dot-line {
    border-left: 3px dotted #000;
    height: auto;
}

.sunrise-sunset {
    margin-top: 5px;
}

.idojaras {
  display: flex;
  flex-direction: column;
  gap: -15px;
}

.idojaras img {
  height: 30px;
  margin-right: 5px;
}

.idojaras {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-family: 'Abril Fatface', serif;
    }

.main-weather {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}

.temp-display {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .temp-display img {
      margin-right: 8px;
    }

    .toggle-icon {
      margin-left: 10px;
      transition: transform 0.4s ease;
    }

.weather-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

    .sunrise-info, .sunset-info {
      opacity: 0;
      transition: opacity 0.4s ease, transform 0.4s ease;
      display: flex;
      align-items: center;
    }

    .sunrise-info img, .sunset-info img {
      margin-right: 8px;
    }

    .idojaras.open .weather-details {
      max-height: 80px;
      margin-top: 10px;
    }

    .idojaras.open .toggle-icon {
      transform: rotate(180deg);
    }
    
    .idojaras.open .sunrise-info {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.1s;
    }
    
    .idojaras.open .sunset-info {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.2s;
    }

    .sunrise-info {
      transform: translateY(-15px);
    }

    .sunset-info {
      transform: translateY(15px);
    }

.napi-ige {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.idojaras {
    position: relative;
    text-align: right;
}

.main-weather {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    gap: 5px;
}

.temp-display {
    display: flex;
    align-items: center;
}

.temp-display img {
    margin-right: 8px;
}

.toggle-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.weather-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #f8f8f8;
    border-radius: 5px;
    margin-top: 5px;
}

.idojaras.open .weather-details {
    max-height: 100px;
    padding: 5px;
}

.idojaras.open .toggle-icon {
    transform: rotate(180deg);
}

.sunrise-info, .sunset-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 5px;
}

.sunrise-info img, .sunset-info img {
    margin-right: 8px;
}

/* Alap stílusok maradnak, de hozzáadom a reszponzív részeket */

/* Általános reszponzív beállítások */
@media (max-width: 1200px) {
  .content {
    padding-left: 30px;
    gap: 20px;
  }
  
  .article {
    width: 280px;
  }
}

@media (max-width: 992px) {
  header {
    flex-direction: column;
    padding: 10px;
  }
  
  .header-content {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  #datum-napnev {
    text-align: center;
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .idojaras {
    margin-top: 10px;
  }
  
.content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  padding: 10px 5px;
}

}
  
.article {
    max-width: 260px;       /* kisebb doboz, hogy több férjen ki */
    width: 100%;
    padding: 6px;
    margin-bottom: 6px;
}
.rovat-ikon {
  width: 20px;
  height: auto;
  display: block;
  margin: 0 auto 4px auto;
}
/* index.css vagy article1.css */
.rovatok-bar {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse; /* jobbról balra töltődik fel */
  background: #2c4049;
  color: white;
  padding: 15px;
  font-weight: bold;
  justify-content: flex-start; /* balra igazítva, de jobbról indul */
  align-items: center;
  gap: 10px;
  margin: 0;
}
.rovatok-bar-scroll {
  overflow: hidden;
  background: #2c4049;
  padding: 8px 0;      /* kisebb padding, alacsonyabb sáv */
  width: 100%;
  height: 190%;
  box-sizing: border-box;
}

.rovatok-bar-inner {
  display: flex;
  gap:  10px;           /* nagyobb tér az ikonok között, de nem túl nagy */
  align-items: center;
  animation: rovat-scroll 40s linear infinite;
}

.rovatok-bar-inner a img {
  height: 7em;      /* nagyobb ikon */
  max-height: 660px;
      transition: transform 0.3s ease;
}


.rovatok-bar-inner a:hover img {
    transform: scale(2.1); /* Egérrel érintve nagyítás */
}
@keyframes rovat-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



.rovatok-bar-scroll:hover .rovatok-bar-inner {
  animation-play-state: paused;
}}
  .pelican-img {
    position: static;
    text-align: center;
    margin-top: 20px;
  }
  
  .pelican-img img {
    width: 80px;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 10px;
    gap: 10px;
  }
  
  .nav-left, .nav-right {
    width: 100%;
    justify-content: center;
  }
  
  .search-container {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
  }
  
  .search-wrapper, .filter-dropdown {
    width: 100%;
  }
  
  .search-bar {
    min-width: auto;
    width: 100%;
    box-sizing: border-box;
  }
  
  .nav-item:not(:last-child)::after {
    display: none;
  }
  
  .title-bar {
    padding: 10px 5px;
  }
  
  .motto {
    position: static;
    max-width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  
  .article {
    width: 100%;
    max-width: 400px;
  }
  
  .article img {
    height: auto;
    max-height: 200px;
  }
}

@media (max-width: 576px) {
  .site-logo img {
    height: 60px;
  }
  
  .title-bar h1 {
    font-size: 30px;
  }
  
  .content {
    padding: 10px;
  }
  
  .article {
    padding: 8px;
  }
  
  .category {
    font-size: 11px;
  }
  
  #datum-napnev {
    font-size: 12px;
  }
}

/* Képek reszponzív viselkedése */
img {
  max-width: 100%;
  height: auto;
}

.article img {
  object-fit: cover;
}

/* Flexbox reszponzív beállítások */
.header-content, 
.nav-left, 
.nav-right, 
.search-container,
.main-weather,
.temp-display,
.sunrise-info, 
.sunset-info {
  flex-wrap: wrap;
}

/* Kisebb képernyőkön a dátum és névnap egymás alatt */
@media (max-width: 400px) {
  #datum-napnev {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.featured-main-article {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin: 20px auto;
  max-width: 1000px;
  text-align: center;
  border-radius: 12px;
}

.featured-main-article img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.featured-content h1 {
  font-family: 'Abril Fatface', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 12px 0;
  line-height: 1.2;
}

.featured-content .lead {
  font-size: 1.25rem;
  color: #444;
  margin: 16px 0;
  max-width: 800px;
  line-height: 1.5; 
}

.featured-content .article-meta {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
  .featured-main-article {
    padding: 16px;
  }

  .featured-content h1 {
    font-size: 1.8rem;
  }

  .featured-content .lead {
    font-size: 1.1rem;
  }
}

    .white-link {
        color: #000;           /* Meleg, gesztenyebarna – nincs kékes árnyalat */
        text-decoration: none;    /* Nincs aláhúzás */
        transition: color 0.2s ease;
        display: block;           /* FONTOS: az egész blokk legyen kattintható */
    }

    .white-link:hover {
        color: #f2f0eb;           /* Sötétebb meleg barna hoverkor */
    }

    .brown-link {
        color: #9B5E3A;           /* Meleg, gesztenyebarna – nincs kékes árnyalat */
        text-decoration: none;    /* Nincs aláhúzás */
        transition: color 0.2s ease;
        display: block;           /* FONTOS: az egész blokk legyen kattintható */
    }

    .brown-link:hover {
        color: #7D4627;           /* Sötétebb meleg barna hoverkor */
    }

  .hiteleti-link {
        color: #424485;           /* Meleg, gesztenyebarna – nincs kékes árnyalat */
        text-decoration: none;    /* Nincs aláhúzás */
        transition: color 0.2s ease;
        display: block;           /* FONTOS: az egész blokk legyen kattintható */
    }

    .hiteleti-link:hover {
        color: #000;           /* Sötétebb meleg barna hoverkor */
    }

  .onallo-link {
        color: #9BC2D3;           /* Meleg, gesztenyebarna – nincs kékes árnyalat */
        text-decoration: none;    /* Nincs aláhúzás */
        transition: color 0.2s ease;
        display: block;           /* FONTOS: az egész blokk legyen kattintható */
    }
.onallo-kep {
    width: 100%;

    }
    .onallo-link:hover {
        color: #000;           /* Sötétebb meleg barna hoverkor */
    }

      .onallo-link2 {
        color: #9BC2D3;           /* Meleg, gesztenyebarna – nincs kékes árnyalat */
        text-decoration: none;    /* Nincs aláhúzás */
          font-size: 1.3em;

        transition: color 0.2s ease;
        display: block;           /* FONTOS: az egész blokk legyen kattintható */
    }

    .onallo-link3:hover {
        color: #006188;           /* Sötétebb meleg barna hoverkor */
    }

          .onallo-link3 {
        color: #9BC2D3;           /* Meleg, gesztenyebarna – nincs kékes árnyalat */
        text-decoration: none;    /* Nincs aláhúzás */

        transition: color 0.2s ease;
        display: block;           /* FONTOS: az egész blokk legyen kattintható */
    }

    .onallo-link3:hover {
        color: #006188;           /* Sötétebb meleg barna hoverkor */
    }
      .rangers-link {
        color: #C50225;           /* Meleg, gesztenyebarna – nincs kékes árnyalat */
        text-decoration: none;    /* Nincs aláhúzás */
        transition: color 0.2s ease;
        display: block;           /* FONTOS: az egész blokk legyen kattintható */
    }
    .rangers-link:hover {
        color: #000;           /* Sötétebb meleg barna hoverkor */
    }

          .szurke-link {
        color: gray;           /* Meleg, gesztenyebarna – nincs kékes árnyalat */
        text-decoration: none;    /* Nincs aláhúzás */
        transition: color 0.2s ease;
        display: block;           /* FONTOS: az egész blokk legyen kattintható */
    }
    .szurke-link:hover {
        color: #000;           /* Sötétebb meleg barna hoverkor */
    }


          .ajanloi-link {
        color: #5D729C;           /* Meleg, gesztenyebarna – nincs kékes árnyalat */
        text-decoration: none;    /* Nincs aláhúzás */
        transition: color 0.2s ease;
        display: block;           /* FONTOS: az egész blokk legyen kattintható */
    }
    .ajanloi-link:hover {
        color: #000;           /* Sötétebb meleg barna hoverkor */
    }

          .muveszeti-link {
        color: #077AAF;           /* Meleg, gesztenyebarna – nincs kékes árnyalat */
        text-decoration: none;    /* Nincs aláhúzás */
        transition: color 0.2s ease;
        display: block;           /* FONTOS: az egész blokk legyen kattintható */
    }
    .rangers-link:hover {
        color: #000;           /* Sötétebb meleg barna hoverkor */
    }
    .deutschblick-link:hover {
        color: #000;           /* Sötétebb meleg barna hoverkor */
    }


          .deutschblick-link {
        color: #0072D6;           /* Meleg, gesztenyebarna – nincs kékes árnyalat */
        text-decoration: none;    /* Nincs aláhúzás */
        transition: color 0.2s ease;
        display: block;           /* FONTOS: az egész blokk legyen kattintható */
    }

          .konyvajanlok-link {
        color: #5D729C;           /* Meleg, gesztenyebarna – nincs kékes árnyalat */
        text-decoration: none;    /* Nincs aláhúzás */
        transition: color 0.2s ease;
        display: block;           /* FONTOS: az egész blokk legyen kattintható */
    }
    .konyvajanlok-link:hover {
        color: #000;           /* Sötétebb meleg barna hoverkor */
    }

              .divatrovat-link {
        color: #006188;           /* Meleg, gesztenyebarna – nincs kékes árnyalat */
        text-decoration: none;    /* Nincs aláhúzás */
        transition: color 0.2s ease;
        display: block;           /* FONTOS: az egész blokk legyen kattintható */
    }
    .divatrovat-link:hover {
        color: #000;           /* Sötétebb meleg barna hoverkor */
    }

                  .iskolank-elete-link {
        color: #4FA8C9;           /* Meleg, gesztenyebarna – nincs kékes árnyalat */
        text-decoration: none;    /* Nincs aláhúzás */
        transition: color 0.2s ease;
        display: block;           /* FONTOS: az egész blokk legyen kattintható */
    }
    .iskolank-elete-link:hover {
        color: #000;           /* Sötétebb meleg barna hoverkor */
    }

    /* Plusz biztonság: ha a cím vagy lead szöveg színe nem örökölne, kényszerítsük */
    .featured-content h1,
    .featured-content .lead {
        color: inherit !important; /* Az a:hover színe lesz érvényes */
        text-decoration: none;
    }


       .brown-link2 {
        color: #9B5E3A;           /* Meleg, gesztenyebarna – nincs kékes árnyalat */
        text-decoration: none;    /* Nincs aláhúzás */
        transition: color 0.2s ease; /* Lágy színváltás hoverkor (opcionális) */
    }

    .brown-link2:hover {
        color: #7D4627;           /* Kicsit sötétebb meleg barna kurzor fölé húzáskor */
        /* text-decoration: underline; */ /* Ha szeretnéd, bekapcsolhatod – de alapból marad ki */
    }
.iroink {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}
.iroink:hover {
  color: #7D4627;
}
    
    /* Általános stílusok */



/* Profil rész */

/* Általános stílusok */
/* Általános stílusok */


/* Profil rész */
.profile {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Balra igazítás */
  margin-bottom: 30px;
}

.profile-image {
    width: 150px;
    height: 150px;
    border: 4px solid #9B5E3A;
    border-radius: 0px;
    object-fit: cover;
    margin-right: 20px;
    margin-top: 30px;
}

.profile-info {
    text-align: left;

}

.profile-info2 {
  text-align: left;
  line-height: 1.1;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
}

.profile-info2 p {
  margin: 0 0 2px 0;
  font-size: 1em;
  line-height: 1.1;
}

.profile-info h3 {
    margin-top: 0;
    color: #333;
}

.profile-info p {
    margin: 5px 0;
    color: #555;
}

.profile-link {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

/* Téma tartalom */
.content {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}
.profile-container {
  display: flex;
  align-items: flex-start;
  gap: 40px; /* Térköz a profil és a szöveg között */
  margin-bottom: 30px;
}

.bemutatkozo {
  max-width: none;
  flex: 1 1 0;
}
/* Emese betűszíne: #006386 */
.emese-text {
  color: #006386 !important;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
}

/* Emese */
.emese-text {
  color: #006386 !important;
  -webkit-text-stroke: 1px #000;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.6;
  font-weight: 400;
}

/* Panni */
.panni-text {
  color: #006386 !important;
  -webkit-text-stroke: 1px #000;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.6;
  font-weight: 400;
}

/* Ádi */
.adi-text {
  color: #0072D6 !important;
  -webkit-text-stroke: 1px #000;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.6;
  font-weight: 400;
}

/* Nóra */
.nora-text, .nora {
  color: #2F4156 !important;
  -webkit-text-stroke: 1px #000;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.6;
  font-weight: 400;
}

/* Nati */
.nati-text {
  color: #0072D6 !important;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.6;
  font-weight: 400;
}

/* Laura */
.laura-text {
  color: #90B8E7 !important;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.6;
  font-weight: 400;
}

/* Juli */
.juli-text {
  color: #5D729C !important;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.6;
  font-weight: 400;
}

/* Ákos */
.akos-text {
  color: #004066 !important;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.6;
  font-weight: 400;
}


.bemutatkozo p {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.6;
  color: #222;
  -webkit-text-stroke: 1.5px #000;
  text-stroke: 1px #000; /* a legtöbb böngésző csak -webkit-text-stroke-ot támogatja */
  font-weight: 400;
}
.bemutatkozo p.emese-text {
  color: #006386 !important;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
} 

/* Frissített dropdown stílusok */
.dropdown2 {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  
}

.dropdown2-toggle {
  background-color: #9B5E3A; /* Meleg barna szín */
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  cursor: pointer;
  font-family: 'Abril Fatface', serif;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dropdown2-toggle:hover {
  background-color: #7D4627; /* Sötétebb barna hover állapotban */
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.dropdown2-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown2-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown2-item {
  padding: 10px 15px;
  display: block;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
    border-radius: 4px;
    

}

.dropdown2-item:last-child {
  border-bottom: none;
}

.dropdown2-item:hover {
  background-color: #f5f5f5;
  color: #9B5E3A;
  padding-left: 20px;
}

/* Kategóriák színezése */
.dropdown2-item[data-category="hitelet"] {
  background-color: #424485;
  color: white;
}

.dropdown2-item[data-category="koreai"] {
  background-color: #000000;
  color: white;
}



.dropdown2-item:hover {
  filter: brightness(1.1);
}

.dropdown2-item:hover {
    background-color: #f5f5f5;
    color: #9B5E3A; /* Meleg barna szín hoverkor (elhagyható) */
}



.dropdown3 {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  
}

.dropdown3-toggle {
  background-color: #9B5E3A; /* Meleg barna szín */
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  cursor: pointer;
  font-family: 'Abril Fatface', serif;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dropdown3-toggle:hover {
  background-color: #7D4627; /* Sötétebb barna hover állapotban */
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.dropdown3-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown3-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown3-item {
  padding: 10px 15px;
  display: block;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
    border-radius: 4px;
    

}

.dropdown3-item:last-child {
  border-bottom: none;
}

.dropdown3-item:hover {
  background-color: #f5f5f5;
  color: #9B5E3A;
  padding-left: 20px;
}

/* Kategóriák színezése */
.dropdown3-item[data-category="divatrovat"] {
  background-color: #006188;
  color: white;
}

.dropdown3-item[data-category="koreai"] {
  background-color: #000000;
  color: white;
}

.dropdown3-item[data-category="kultura"] {
  background-color: #9B5E3A;
  color: white;
}

.dropdown3-item:hover {
  filter: brightness(1.1);
}

.dropdown3-item:hover {
    background-color: #f5f5f5;
    color: #9B5E3A; /* Meleg barna szín hoverkor (elhagyható) */
}




.dropdown4 {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  
}

.dropdown4-toggle {
  background-color: #9B5E3A; /* Meleg barna szín */
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  cursor: pointer;
  font-family: 'Abril Fatface', serif;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dropdown4-toggle:hover {
  background-color: #7D4627; /* Sötétebb barna hover állapotban */
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.dropdown4-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown4-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown4-item {
  padding: 10px 15px;
  display: block;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
    border-radius: 4px;
    

}

.dropdown4-item:last-child {
  border-bottom: none;
}

.dropdown4-item:hover {
  background-color: #f5f5f5;
  color: #9B5E3A;
  padding-left: 20px;
}

/* Kategóriák színezése */
.dropdown4-item[data-category="iskolankelete"] {
  background-color: #006188;
  color: white;
}

.dropdown4-item[data-category="nemet"] {
  background: linear-gradient(to bottom, 
    #000000, 
    #000000 33%, 
    #DD0000 33%, 
    #DD0000 66%, 
    #FFCE00 66%, 
    #FFCE00);
  color: white;
  padding: 8px 12px; /* adj hozzá paddingot a szöveghez */
}

.dropdown4-item[data-category="hitelet"] {
  background-color: #424485;
  color: white;
}
.dropdown4-item[data-category="lictech"] {
  background-color: #00563F;
  color: white;
}

.dropdown4-item:hover {
  filter: brightness(1.1);
}

.dropdown4-item:hover {
    background-color: #f5f5f5;
    color: #9B5E3A; /* Meleg barna szín hoverkor (elhagyható) */
}


.dropdown5 {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  
}

.dropdown5-toggle {
  background-color: #9B5E3A; /* Meleg barna szín */
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  cursor: pointer;
  font-family: 'Abril Fatface', serif;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dropdown5-toggle:hover {
  background-color: #7D4627; /* Sötétebb barna hover állapotban */
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.dropdown5-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #5D729C;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown5-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown5-item {
  padding: 10px 15px;
  display: block;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
    border-radius: 4px;
    

}

.dropdown5-item:last-child {
  border-bottom: none;
}

.dropdown5-item:hover {
  background-color: #f5f5f5;
  color: #9B5E3A;
  padding-left: 20px;
}

/* Kategóriák színezése */
.dropdown5-item[data-category="iskolankelete"] {
  background-color: #006188;
  color: white;
}

.dropdown5-item[data-category="nemet"] {
  background: linear-gradient(to bottom, 
    #000000, 
    #000000 33%, 
    #DD0000 33%, 
    #DD0000 66%, 
    #FFCE00 66%, 
    #FFCE00);
  color: white;
  padding: 8px 12px; /* adj hozzá paddingot a szöveghez */
}

.dropdown5-item[data-category="hitelet"] {
  background-color: #424485;
  color: white;
}
.dropdown5-item[data-category="lictech"] {
  background-color: #00563F;
  color: white;
}

.dropdown5-item:hover {
  filter: brightness(1.1);
}

.dropdown5-item:hover {
    background-color: #f5f5f5;
    color: #9B5E3A; /* Meleg barna szín hoverkor (elhagyható) */
}




.dropdown6 {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  
}

.dropdown6-toggle {
  background-color: #9B5E3A; /* Meleg barna szín */
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  cursor: pointer;
  font-family: 'Abril Fatface', serif;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dropdown6-toggle:hover {
  background-color: #7D4627; /* Sötétebb barna hover állapotban */
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.dropdown6-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown6-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown6-item {
  padding: 10px 15px;
  display: block;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
    border-radius: 4px;
    

}

.dropdown6-item:last-child {
  border-bottom: none;
}

.dropdown6-item:hover {
  background-color: #f5f5f5;
  color: #9B5E3A;
  padding-left: 20px;
}

/* Kategóriák színezése */
.dropdown6-item[data-category="iskolankelete"] {
  background-color: #006188;
  color: white;
}

.dropdown6-item[data-category="nemet"] {
  background: linear-gradient(to bottom, 
    #000000, 
    #000000 33%, 
    #DD0000 33%, 
    #DD0000 66%, 
    #FFCE00 66%, 
    #FFCE00);
  color: white;
  padding: 8px 12px; /* adj hozzá paddingot a szöveghez */
}

.dropdown6-item[data-category="hitelet"] {
  background-color: #424485;
  color: white;
}
.dropdown6-item[data-category="lictech"] {
  background-color: #00563F;
  color: white;
}

.dropdown6-item:hover {
  filter: brightness(1.1);
}

.dropdown6-item:hover {
    background-color: #f5f5f5;
    color: #9B5E3A; /* Meleg barna szín hoverkor (elhagyható) */
}



.dropdown7 {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  
}

.dropdown7-toggle {
  background-color: #9B5E3A; /* Meleg barna szín */
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  cursor: pointer;
  font-family: 'Abril Fatface', serif;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dropdown7-toggle:hover {
  background-color: #7D4627; /* Sötétebb barna hover állapotban */
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.dropdown7-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #C50225;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown7-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown7-item {
  padding: 10px 15px;
  display: block;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
    border-radius: 4px;
    

}

.dropdown7-item:last-child {
  border-bottom: none;
}

.dropdown7-item:hover {
  background-color: #f5f5f5;
  color: #9B5E3A;
  padding-left: 20px;
}

/* Kategóriák színezése */
.dropdown7-item[data-category="iskolankelete"] {
  background-color: #006188;
  color: white;
}

.dropdown7-item[data-category="nemet"] {
  background: linear-gradient(to bottom, 
    #000000, 
    #000000 33%, 
    #DD0000 33%, 
    #DD0000 66%, 
    #FFCE00 66%, 
    #FFCE00);
  color: white;
  padding: 8px 12px; /* adj hozzá paddingot a szöveghez */
}

.dropdown7-item[data-category="hitelet"] {
  background-color: #424485;
  color: white;
}
.dropdown7-item[data-category="lictech"] {
  background-color: #00563F;
  color: white;
}

.dropdown7-item:hover {
  filter: brightness(1.1);
}

.dropdown7-item:hover {
    background-color: #f5f5f5;
    color: #9B5E3A; /* Meleg barna szín hoverkor (elhagyható) */
}



.dropdown8 {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  
}

.dropdown8-toggle {
  background-color: #9B5E3A; /* Meleg barna szín */
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  cursor: pointer;
  font-family: 'Abril Fatface', serif;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dropdown8-toggle:hover {
  background-color: #7D4627; /* Sötétebb barna hover állapotban */
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.dropdown8-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown8-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown8-item {
  padding: 10px 15px;
  display: block;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
    border-radius: 4px;
    

}

.dropdown8-item:last-child {
  border-bottom: none;
}

.dropdown8-item:hover {
  background-color: #f5f5f5;
  color: #9B5E3A;
  padding-left: 20px;
}

/* Kategóriák színezése */
.dropdown8-item[data-category="iskolankelete"] {
  background-color: #006188;
  color: white;
}

.dropdown8-item[data-category="nemet"] {
  background: linear-gradient(to bottom, 
    #000000, 
    #000000 33%, 
    #DD0000 33%, 
    #DD0000 66%, 
    #FFCE00 66%, 
    #FFCE00);
  color: white;
  padding: 8px 12px; /* adj hozzá paddingot a szöveghez */
}

.dropdown8-item[data-category="hitelet"] {
  background-color: #424485;
  color: white;
}
.dropdown8-item[data-category="lictech"] {
  background-color: #00563F;
  color: white;
}

.dropdown8-item:hover {
  filter: brightness(1.1);
}

.dropdown8-item:hover {
    background-color: #f5f5f5;
    color: #9B5E3A; /* Meleg barna szín hoverkor (elhagyható) */
}


.dropdown9 {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  
}

.dropdown9-toggle {
  background-color: #9B5E3A; /* Meleg barna szín */
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  cursor: pointer;
  font-family: 'Abril Fatface', serif;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dropdown9-toggle:hover {
  background-color: #7D4627; /* Sötétebb barna hover állapotban */
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.dropdown9-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown9-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown9-item {
  padding: 10px 15px;
  display: block;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
    border-radius: 4px;
    

}

.dropdown9-item:last-child {
  border-bottom: none;
}

.dropdown9-item:hover {
  background-color: #f5f5f5;
  color: #9B5E3A;
  padding-left: 20px;
}

/* Kategóriák színezése */
.dropdown9-item[data-category="iskolankelete"] {
  background-color: #006188;
  color: white;
}

.dropdown9-item[data-category="nemet"] {
  background: linear-gradient(to bottom, 
    #000000, 
    #000000 33%, 
    #DD0000 33%, 
    #DD0000 66%, 
    #FFCE00 66%, 
    #FFCE00);
  color: white;
  padding: 8px 12px; /* adj hozzá paddingot a szöveghez */
}

.dropdown9-item[data-category="hitelet"] {
  background-color: #424485;
  color: white;
}
.dropdown9-item[data-category="lictech"] {
  background-color: #00563F;
  color: white;
}

.dropdown9-item:hover {
  filter: brightness(1.1);
}

.dropdown9-item:hover {
    background-color: #f5f5f5;
    color: #9B5E3A; /* Meleg barna szín hoverkor (elhagyható) */
}


.dropdown10 {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  
}

.dropdown10-toggle {
  background-color: #9B5E3A; /* Meleg barna szín */
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  cursor: pointer;
  font-family: 'Abril Fatface', serif;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dropdown10-toggle:hover {
  background-color: #7D4627; /* Sötétebb barna hover állapotban */
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.dropdown10-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown10-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown10-item {
  padding: 10px 15px;
  display: block;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
    border-radius: 4px;
    

}

.dropdown10-item:last-child {
  border-bottom: none;
}

.dropdown10-item:hover {
  background-color: #f5f5f5;
  color: #9B5E3A;
  padding-left: 20px;
}

/* Kategóriák színezése */
.dropdown10-item[data-category="iskolankelete"] {
  background-color: #006188;
  color: white;
}

.dropdown10-item[data-category="nemet"] {
  background: linear-gradient(to bottom, 
    #000000, 
    #000000 33%, 
    #DD0000 33%, 
    #DD0000 66%, 
    #FFCE00 66%, 
    #FFCE00);
  color: white;
  padding: 8px 12px; /* adj hozzá paddingot a szöveghez */
}

.dropdown10-item[data-category="hitelet"] {
  background-color: #424485;
  color: white;
}
.dropdown10-item[data-category="lictech"] {
  background-color: #00563F;
  color: white;
}

.dropdown10-item:hover {
  filter: brightness(1.1);
}

.dropdown10-item:hover {
    background-color: #f5f5f5;
    color: #9B5E3A; /* Meleg barna szín hoverkor (elhagyható) */
}


.dropdown12 {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  
}

.dropdown12-toggle {
  background-color: #9B5E3A; /* Meleg barna szín */
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  cursor: pointer;
  font-family: 'Abril Fatface', serif;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dropdown12-toggle:hover {
  background-color: #7D4627; /* Sötétebb barna hover állapotban */
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.dropdown12-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #9bc2d3;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown12-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown12-item {
  padding: 10px 15px;
  display: block;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
    border-radius: 4px;
    

}

.dropdown12-item:last-child {
  border-bottom: none;
}

.dropdown12-item:hover {
  background-color: #f5f5f5;
  color: #9B5E3A;
  padding-left: 20px;
}

/* Kategóriák színezése */
.dropdown12-item[data-category="hitelet"] {
  background-color: #424485;
  color: white;
}

.dropdown12-item[data-category="koreai"] {
  background-color: #000000;
  color: white;
}



.dropdown12-item:hover {
  filter: brightness(1.1);
}

.dropdown12-item:hover {
    background-color: #f5f5f5;
    color: #9B5E3A; /* Meleg barna szín hoverkor (elhagyható) */
}

    .sarga-hatter {
      background-color: #FCEAC1;
      padding: 2px;
      border-radius: 10px;
      font-family: Times New Roman;
      font-weight: bold;
      font-size: 1.3em;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: left;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */


    }

        .rangers-hatter {
      background-color: #79A0FF;
      padding: 2px;
      font-family: Times New Roman;
      font-weight: bold;
      font-size: 1.3em;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: left;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */


    }

    .onallo-hatter {
      background-color: #70ABC6;
      padding: 1x;
      border-radius: 1px;
      font-family: Times New Roman;
      font-weight: bold;
      color: #FFFAEF;
      font-size: 1.3em;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: left;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */


    }


        .onallo-hatter2 {
      background-color: #70ABC6;
      border-radius: 1px;
      font-family: Times New Roman;
      font-weight: bold;
      color: #FFFAEF;
      font-size: 1.3em;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: center;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */


    }

        .lictech-hatter {
      background-color: #09597e;
      border-radius: 1px;
      font-family: Times New Roman;
      font-weight: bold;
      color: #FFFAEF;
      font-size: 1.3em;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: center;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */


    }
    .szezonalis-hatter {
      background-color: #069bd6;
      padding: 2px;
      font-family: Times New Roman;
      font-weight: bold;
      color:#fdf7eb;
      font-size: 1.3em;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: left;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */


    }

            .deutschblick-hatter {
      background-color: #085bff;
      border-radius: 1px;
      font-family: Times New Roman;
      font-weight: bold;
      color: #FFFAEF;
      font-size: 1.3em;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: center;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */


    }

        .iskolank-elete-hatter {
      background-color: #2D5C71;
      padding: 1x;
      border-radius: 1px;
      font-family: Times New Roman;
      font-weight: bold;
      color: #FFFAEF;
      font-size: 1.3em;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: left;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */


    }
    .fejlec-megjegyzes-divatrovat-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  background: #006188;
  color: #FFFAEF;
}

.fejlec-megjegyzes-divatrovat-wrapper.open {
  max-height: 100px; /* Elég nagy érték, hogy biztosan látszódjon */
}

.fejlec-megjegyzes-divatrovat {
  padding: 10px;
  text-align: center;
}

        .divatrovat-hatter {
      background-color: #006188;
      padding: 2px;
      font-family: Times New Roman;
      color: #FFFAEF;
      font-weight: bold;
      font-size: 1.3em;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: left;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */


    }
    
        .fejlec-megjegyzes {
      background-color: #70ABC6;
      border-radius: 1px;
      font-family: Abril Fatface, sans-serif;
      color: #FFFAEF;
      font-size: 1.9m;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: center;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */


    }
.fejlec-megjegyzes-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  background: #70ABC6;
}

.fejlec-megjegyzes-wrapper.open {
  max-height: 100px; /* Elég nagy érték, hogy biztosan látszódjon */
}

.fejlec-megjegyzes {
  padding: 10px;
  text-align: center;
}




.fejlec-megjegyzes-hitelet {
      background-color: #8889b0;
      border-radius: 1px;
      font-family: Abril Fatface, sans-serif;
      color: #FFFAEF;
      font-size: 1.9m;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: center;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */


    }
.fejlec-megjegyzes-hitelet-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  background: #8889b0;
}

.fejlec-megjegyzes-hitelet-wrapper.open {
  max-height: 100px; /* Elég nagy érték, hogy biztosan látszódjon */
}

.fejlec-megjegyzes-hitelet {
  padding: 10px;
  text-align: center;
}

        .fejlec-megjegyzes-rangers {
      background-color: #144dd6;
      border-radius: 1px;
      font-family: Abril Fatface, sans-serif;
      color: #FFFAEF;
      font-size: 1.9m;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: center;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */


    }
.fejlec-megjegyzes-rangers-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  background: #144dd6;
}

.fejlec-megjegyzes-rangers-wrapper.open {
  max-height: 100px; /* Elég nagy érték, hogy biztosan látszódjon */
}

.fejlec-megjegyzes-rangers {
  padding: 10px;
  text-align: center;
}


        .fejlec-megjegyzes-iskolankelete {
      background-color: #70ABC6;
      border-radius: 1px;
      font-family: Abril Fatface, sans-serif;
      color: #FFFAEF;
      font-size: 1.9m;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: center;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */


    }
.fejlec-megjegyzes-iskolankelete {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  background: #4fa8c9;
}
.fejlec-megjegyzes-iskolankelete-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  background: #4fa8c9;
}

.fejlec-megjegyzes-iskolankelete-wrapper.open {
  max-height: 100px; /* Elég nagy érték, hogy biztosan látszódjon */
}

.fejlec-megjegyzes-iskolankelete.open {
  max-height: 100px; /* Elég nagy érték, hogy biztosan látszódjon */
}

.fejlec-megjegyzes-iskolankelete {
  padding: 10px;
  text-align: center;
}

.fejlec-megjegyzes-deutschblick {
      background-color: #085bff;
      border-radius: 1px;
      font-family: Abril Fatface, sans-serif;
      color: #FFFAEF;
      font-size: 1.9m;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: center;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */


    }
.fejlec-megjegyzes-deutschblick-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  background: #085bff;
}

.fejlec-megjegyzes-deutschblick-wrapper.open {
  max-height: 100px; /* Elég nagy érték, hogy biztosan látszódjon */
}

.fejlec-megjegyzes-deutschblick {
  padding: 10px;
  text-align: center;
}

          .fejlec-megjegyzes-konyvajanloink {
      background-color: #c1d3fc;
      border-radius: 1px;
      font-family: Abril Fatface, sans-serif;
      color: #FFFAEF;
      font-size: 1.9m;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: center;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */


    }
.fejlec-megjegyzes-konyvajanloink {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  background: #c1d3fc;
}
.fejlec-megjegyzes-konyvajanloink-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  background: #c1d3fc;
}

.fejlec-megjegyzes-konyvajanloink-wrapper.open {
  max-height: 100px; /* Elég nagy érték, hogy biztosan látszódjon */
}

.fejlec-megjegyzes-konyvajanloink.open {
  max-height: 100px; /* Elég nagy érték, hogy biztosan látszódjon */
}

.fejlec-megjegyzes-konyvajanloink {
  padding: 10px;
  text-align: center;
}

.rovat-cimek {
      border-radius: 1px;
      font-family: Abril Fatface, sans-serif;
      color: #70ABC6;
      font-size: 1.9m;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: left;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */
    }
        .rovat-cimek-irodalmi {
      border-radius: 1px;
      font-family: Abril Fatface, sans-serif;
      color: #8897AA;
      font-size: 1.9m;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: left;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */
    }
    .rovat-cimek-muveszeti {
      border-radius: 1px;
      font-family: Abril Fatface, sans-serif;
      color: #077AAF;
      font-size: 1.9m;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: left;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */
    }


    .rovat-cimek h2 {
    margin-bottom: 0.2em;
}
    .rovat-cimek h4 {
      font-family: Abril Fatface, sans-serif;
      color: #70ABC6;
      font-size: 1.5em;
      line-height: 1.6;
      max-width: max;
       margin-top: 0.2em;   /* vagy 0, ha teljesen fel akarod tolni */
    margin-bottom: 0.2em;
      text-align: left;
    }
}
.rovat-alcim {
  border-radius: 1px;
  font-family: Abril Fatface, sans-serif;
  color: #000;
  font-size: 1.3em;
  line-height: 1.6;
  max-width: max;
  margin: 4px 0 4px 0; /* Kisebb margó! */
  text-align: left;
}

.rovat-cimek-hitelet {
      border-radius: 1px;
      font-family: Abril Fatface, sans-serif;
      color: #8889b0;
      font-size: 1.9m;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: left;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */
    }
    .rovat-cimek-hitelet h2 {
    margin-bottom: 0.2em;
}
    .rovat-cimek-hitelet h4 {
      font-family: Abril Fatface, sans-serif;
      color: #424485;
      font-size: 1.5em;
      line-height: 1.6;
      max-width: max;
       margin-top: 0.2em;   /* vagy 0, ha teljesen fel akarod tolni */
    margin-bottom: 0.2em;
      text-align: left;
    }
}
.rovat-alcim-hitelet {
  border-radius: 1px;
  font-family: Abril Fatface, sans-serif;
  color: #000;
  font-size: 1.3em;
  line-height: 1.6;
  max-width: max;
  margin: 4px 0 4px 0; /* Kisebb margó! */
  text-align: left;
}

.rovat-alcim-lictech {
  border-radius: 1px;
  font-family: Abril Fatface, sans-serif;
  color: #07aa89;
  font-size: 1.8em;
  line-height: 1.6;
  max-width: max;
  margin: 4px 0 4px 0; /* Kisebb margó! */
  text-align: left;
}

.rovat-cimek-rangers {
      border-radius: 1px;
      font-family: Abril Fatface, sans-serif;
      color: #144dd6;
      font-size: 1.9m;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: left;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */
    }
    .rovat-cimek-rangers h2 {
    margin-bottom: 0.2em;
}
    .rovat-cimek-rangers h4 {
      font-family: Abril Fatface, sans-serif;
      color: #424485;
      font-size: 1.5em;
      line-height: 1.6;
      max-width: max;
       margin-top: 0.2em;   /* vagy 0, ha teljesen fel akarod tolni */
    margin-bottom: 0.2em;
      text-align: left;
    }
}
.rovat-alcim-rangers {
  border-radius: 1px;
  font-family: Abril Fatface, sans-serif;
  color: #000;
  font-size: 1.3em;
  line-height: 1.6;
  max-width: max;
  margin: 4px 0 4px 0; /* Kisebb margó! */
  text-align: left;
}

.rovat-cimek-konyvajanloink {
      border-radius: 1px;
      font-family: Abril Fatface, sans-serif;
      color: #c1d3fc;
      font-size: 1.9m;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: left;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */
    }
    .rovat-cimek-konyvajanloink h2 {
    margin-bottom: 0.2em;
}
    .rovat-cimek-konyvajanloink h4 {
      font-family: Abril Fatface, sans-serif;
      color: #c1d3fc;
      font-size: 1.5em;
      line-height: 1.6;
      max-width: max;
       margin-top: 0.2em;   /* vagy 0, ha teljesen fel akarod tolni */
    margin-bottom: 0.2em;
      text-align: left;
    }
}
.rovat-alcim-konyvajanloink {
  border-radius: 1px;
  font-family: Abril Fatface, sans-serif;
  color: #000;
  font-size: 1.3em;
  line-height: 1.6;
  max-width: max;
  margin: 4px 0 4px 0; /* Kisebb margó! */
  text-align: left;
}

.rovat-cimek-deutschblick {
      border-radius: 1px;
      font-family: Abril Fatface, sans-serif;
      color: #085bff;
      font-size: 1.9m;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: left;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */
    }
    .rovat-cimek-deutschblick h2 {
    margin-bottom: 0.2em;
}
    .rovat-cimek-deutschblick h4 {
      font-family: Abril Fatface, sans-serif;
      color: #085bff;
      font-size: 1.5em;
      line-height: 1.6;
      max-width: max;
       margin-top: 0.2em;   /* vagy 0, ha teljesen fel akarod tolni */
    margin-bottom: 0.2em;
      text-align: left;
    }
}
.rovat-alcim-deutschblick {
  border-radius: 1px;
  font-family: Abril Fatface, sans-serif;
  color: #000;
  font-size: 1.3em;
  line-height: 1.6;
  max-width: max;
  margin: 4px 0 4px 0; /* Kisebb margó! */
  text-align: left;
}

.rovat-cimek-rangers {
      border-radius: 1px;
      font-family: Abril Fatface, sans-serif;
      color: #144dd6;
      font-size: 1.9m;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: left;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */
    }
    .rovat-cimek-rangers h2 {
    margin-bottom: 0.2em;
}
    .rovat-cimek-rangers h4 {
      font-family: Abril Fatface, sans-serif;
      color: #424485;
      font-size: 1.5em;
      line-height: 1.6;
      max-width: max;
       margin-top: 0.2em;   /* vagy 0, ha teljesen fel akarod tolni */
    margin-bottom: 0.2em;
      text-align: left;
    }
}
.rovat-alcim-rangers {
  border-radius: 1px;
  font-family: Abril Fatface, sans-serif;
  color: #000;
  font-size: 1.3em;
  line-height: 1.6;
  max-width: max;
  margin: 4px 0 4px 0; /* Kisebb margó! */
  text-align: left;
}

.rovat-cimek-iskolankelete {
      border-radius: 1px;
      font-family: Abril Fatface, sans-serif;
      color: #1e8abc;
      font-size: 1.9m;
      line-height: 1.6;
      max-width: max;
      margin: 20px auto;
      text-align: left;
        margin: 20px 0 20px 0; /* Csak fent és lent van margó */
    }
    .rovat-cimek-iskolankelete h2 {
    margin-bottom: 0.2em;
}
    .rovat-cimek-iskolankelete h4 {
      font-family: Abril Fatface, sans-serif;
      color: #424485;
      font-size: 1.5em;
      line-height: 1.6;
      max-width: max;
       margin-top: 0.2em;   /* vagy 0, ha teljesen fel akarod tolni */
    margin-bottom: 0.2em;
      text-align: left;
    }
}
.rovat-alcim-iskolankelete {
  border-radius: 1px;
  font-family: Abril Fatface, sans-serif;
  color: #000;
  font-size: 1.3em;
  line-height: 1.6;
  max-width: max;
  margin: 4px 0 4px 0; /* Kisebb margó! */
  text-align: left;
}

.hr-container {
  width: 100%;
  max-width: 1200px; /* Illeszkedjen a többi tartalomhoz */
  margin: 20px auto; /* Függőleges tér */
  padding: 0 20px;   /* Ha van padding a .content-en belül */
  box-sizing: border-box;
}

.hr-container hr.dotted {
  border: 0;
  border-top: 2px dotted #000; /* vagy a kívánt szín */
  margin: 0;
  width: 100%;
}


/* Tooltip stílus */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltip-text {
  visibility: hidden;
  width: 180px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 18px;
  position: absolute;
  z-index: 100;
  bottom: 125%; /* Felül jelenik meg */
  left: 50%;
  margin-left: -90px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 14px;
  font-weight: normal;
  white-space: nowrap;
}

.tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}











#mobile-warning {
  display: none; /* alapból rejtve */
  background-color: #ffdddd;
  color: #660000;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  border-bottom: 2px solid #cc0000;
}

@media (max-width: 768px) {
  #mobile-warning {
    display: block; /* mobilon jelenjen meg */
  }
}




/* Gombok elrendezése */
.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

#terms-popup button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Abril Fatface', serif;
  transition: background 0.3s;
}

#accept-terms-btn {
  background: #2c4049;
  color: white;
}

#accept-terms-btn:hover {
  background: #7D4627;
}

#decline-terms-btn {
  background: #e74c3c;
  color: white;
}

#decline-terms-btn:hover {
  background: #c0392b;
}


#napi-ige-szoveg {
  transition: opacity 0.4s ease;
  opacity: 1;
}




/* Add hozzá a verses kinézetet */
.verses-box {
  border-radius: 10px;
  font-family: 'Helvetica', serif;
  font-size: 1em;
  text-align: center;
  margin: 30px auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.verses-box p {
  margin: 0;
  white-space: pre-line;
}