 body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.4;
        }
        header {
            background: #4c9caf;
            color: white;
            text-align: center;
            padding: 0.5rem 0;
			
        }
        nav {
            background: #21829d;
            color: white;
            padding: 0.5rem 1rem;
            text-align: center;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
        }
        nav a:hover {
            text-decoration: underline;
        }
        main {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }
       
	   
	    iframe {
            display: block;
            margin: 20px auto;
            border: 0px solid #ccc;
        }
	   
	   
	   
        footer {
            background: #4c9caf;
            color: white;
            text-align: center;
            padding: 1rem 0;
            margin-top: 20px;
        }
		
		.image-container {
    display: flex;
    justify-content: center; /* Középre igazítás vízszintesen */
    align-items: center; /* Középre igazítás függőlegesen (ha magasság van megadva) */
    width: 100%; /* A szülőelem szélessége */
}

.image-container img {
    max-width: 100%; /* Reszponzív viselkedés */
    max-height: 100%; /* Magasság is kezelhető */
    width: auto; /* Automatikus szélesség */
    height: auto; /* Automatikus magasság */
   /* max-width: 400px;  Maximális szélesség 400px */
}
		
		/* Alapvető stílus a linkekhez */
a.highlight-link {
    color: #ff5733; /* Narancsos szín */
    font-weight: bold; /* Vastag betű */
    text-decoration: none; /* Aláhúzás eltávolítása */
    position: relative; /* Pozíció a jel hozzáadásához */
}

/* Hover állapot */
a.highlight-link:hover {
    color: #c70039; /* Sötétebb piros szín hover esetén */
    text-decoration: underline; /* Aláhúzás hover esetén */
}

/* Jel hozzáadása a link elé */
a.highlight-link::after {
    content: '⇑'; /* Unicode nyíl vagy más jel */
    color: #ff5733; /* A jel színe megegyezik a link színével */
    font-weight: normal;
    position: relative;
	margin-right: 0px; /* Hézag a jel és a szöveg között */
}
		
		
		
		.responsive-image-container {
    text-align: center; /* A kép középre igazítása */
    margin: 20px 0; /* Felső és alsó margó */
}

.responsive-image {
    max-width: 100%; /* A kép szélessége nem haladja meg a konténert */
    height: auto; /* A magasság automatikusan arányos marad */
    border-radius: 10px; /* Opcionális: lekerekített sarkok */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Opcionális: árnyék */
}



.language-selector {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 100;
}

.flag-icon {
    width: 40px;
    height: 30px;
}

img.alignleft {
    float: left;
    margin: 0 15px 10px 0;
}

.highlight {
    color: #33b414;
    font-weight: bold;
  }
  
  .responsive-logo {
    max-width: 100%;
    height: auto;
  }
  
  @media (max-width: 768px) {
    .responsive-logo {
      width: 150px;
      height: 150px;
    }
  }
  
  @media (max-width: 480px) {
    .responsive-logo {
      width: 120px;
      height: 120px;
      margin: 0 auto; /* Center on smallest screens */
    }
    li > div {
      flex-direction: column;
      text-align: center;
    }
  }
