/* General Body and Header Style */
body {
    font-family: Arial, sans-serif;
}
.header {
    position: relative;
    background-color: #f2f2f2;
    padding: 10px;
    text-align: center;
}
.header-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 600px; /* vagy bármilyen más méret */
    height: auto;
}

.header-image:first-of-type {
    left: 0;
}

.header-image:last-of-type {
    right: 0;
}

/* Navigation Bar Style */
.nav-bar {
    overflow: hidden;
    background-color: #333;
}
.nav-bar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}
.nav-bar a:hover {
    background-color: #ddd;
    color: black;
}

.nav-bar .login-register {
    float: right;
}

.nav-bar .profile {
    float: right;
}

/*Lábléc*/
footer {
    text-align: center;
    padding: 5px;
    background-color: #f2f2f2;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Lenyíló menü stílusok */
.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;    
    border: none;
    outline: none;
    color: blach;
    padding: 14px 20px;
    background-color: lightgrey;
    font-family: inherit; /* Font család a navbarból */
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.references {
    text-align: justify;
}

.references p {
    margin-bottom: 1em;
}

.justified-text {
    text-align: justify;
}

.index-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; 
    margin: 0 auto;
}


.index-image {
    width: 60%; 
    height: auto; 
}

.output-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%; 
    margin: 0 auto;
}

.output-image {
    width: 550px; 
    height: auto; 
}
