/*Lábléc beállítások*/
#footer {
    background-color: #132a33; /* Egyszínű háttér */
    padding: 10px 0; /* Csökkentett padding a vékony sáv érdekében */
    text-align: center;
    color: #fff;
    position: relative;
    width: 100%;	/* Biztosítja, hogy a lábléc teljes szélességet elfoglalja */
	max-width: 100%; /* Megakadályozza, hogy kisebb legyen a konténernél */
    height: 72px; /* Vékony sáv magassága */
    margin-top: auto; /* Automatikusan lefelé tolja, ha a tartalom kevesebb */
	box-sizing: border-box; /* Elkerüli a méretezési problémákat */
}

.footer-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-link:hover {
    color: white;
}

.footer-info p {
    margin: 0;
    font-size: 12px;
    display: flex;
    justify-content: center; /* Középre igazítja a tartalmat */
    align-items: center; /* Függőlegesen is középre helyezi */
    gap: 10px; /* A linkek közötti távolság */
}

.footer-version {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    bottom: 5px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    width: 99%;
}

.footer-version a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding-left: 10px;
}

.footer-version a:hover {
    color: rgba(255, 255, 255, 1);
}


#footer p {
    margin: 0;
}

#footer img {
    max-width: 668px;
    height: 227px;
}

#footer h1 {
    position: center;
    bottom: 10px;
    left: 0;
    right: 0;
}
@media (max-width: 768px) {
    #footer {
        flex-direction: column;
        height: auto;
        padding: 15px 10px;
        text-align: center;
    }

    .footer-info p {
        flex-direction: column;
        align-items: center;
        font-size: 13px;
        gap: 6px;
    }

    .footer-version {
        position: static;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        font-size: 11.5px;
        margin-top: 10px;
    }

    .footer-version a {
        padding: 4px 6px;
        font-size: 12px;
    }

    #footer img {
        max-width: 90%;
        height: auto;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    #footer {
        padding: 20px 10px;
    }

    .footer-info p {
        font-size: 12px;
        gap: 4px;
    }

    .footer-version {
        font-size: 11px;
    }

    .footer-version a {
        font-size: 11px;
        padding: 3px 5px;
    }

    #footer img {
        max-width: 100%;
        height: auto;
    }
}