/*cookie beállítások*/
#cookie-consent {
    position: fixed;    /* Fixált pozíció */
    bottom: 0;          /* A képernyő alján */
    left: 0;            /* Bal oldalon */
    width: 100%;        /* Teljes szélesség */
    background-color: #132a33;
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 9999;      /* Minden más elem felett jelenjen meg */
}

#cookie-consent button {
    padding: 5px 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

#cookie-consent button:hover {
    background-color: #45a049;
}
