/* Alapbeállítások, hogy ne legyen felesleges szóköz */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh; /* A teljes képernyőmagasságot kitölti */
    font-family: sans-serif;
}

.content {
    flex: 1; /* Kitölti a maradék helyet a header és footer között */
    overflow-y: auto; /* Ha túl sok a tartalom, csak ez a rész görgethető */
    padding: 20px;
    background-color: #f4f4f4;
}

.main-footer {
    height: 50px;
    background-color: #222;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------------------------------------------------------------------------------------------------------------------- */
/* LOGO */
/* ---------------------------------------------------------------------------------------------------------------------- */

#site_logo
{
    background-color: transparent;
    float: left;
    height:100%;
    padding-top:11px;  
    padding-left:11px;  
}

/* ---------------------------------------------------------------------------------------------------------------------- */
/* MOBIL NÉZET GOMB */
/* ---------------------------------------------------------------------------------------------------------------------- */


#site_mobil_view_button
{
    background-color: transparent;
    float: right;
    height:100%;
    width:60px;
    display:block;
}

/* ---------------------------------------------------------------------------------------------------------------------- */
/* HEADER DIV */
/* ---------------------------------------------------------------------------------------------------------------------- */

#header 
{
    font-family: QuickSand; 
    z-index:1000;
    width:100%;
    position:fixed;
    height: 52px;
    background-color:#F2F2F2;
    border-bottom: 1px solid lightgray;
}

/* lenyíló menü*/
#icon_header 
{
    font-family: QuickSand; 
    /*font-family:Verdana,sans-serif;*/
    z-index:100;
    position:fixed;
    height: 170px;
    background-color:#FAF9F8;
    background-color:transparent;
    border-bottom: 0px solid lightgray;
    display: none;text-align:left;margin-top:52px;width:100%;
}




