#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    font-family: sans-serif;
    display: none;
}

#cookie-banner button {
    margin: 0 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

#cookie-accept {
    background: #4caf50;
    color: white;
}

#cookie-reject {
    background: #f44336;
    color: white;
}