body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #900000;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    display: none; /* Alapértelmezett: rejtett */
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}

.cookie-banner p {
    margin: 0;
    display: inline;
}

.cookie-banner a {
    color: #000080;
    text-decoration: underline;
}

.cookie-banner button {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 8px 15px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 5px;
}

.cookie-banner button#decline-cookies {
    background-color: #dc3545;
}

.cookie-banner button:hover {
    opacity: 0.9;
}
