#cookie-banner {
    background: #263238;
    color: #fff;
    padding: 1em 2em;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    font-size: 1em;
    flex-wrap: wrap;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

#accept-cookies {
    margin-left: 1em;
    padding: 0.5em 1.4em;
    border: none;
    background: var(--accent);
    color: #263238;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

#accept-cookies:hover, 
#accept-cookies:focus {
    background: #263238;
    color: var(--accent);
    outline: none;
}

#cookie-banner a {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.2s;
}

#cookie-banner a:hover, 
#cookie-banner a:focus {
    color: #fff;
}