
/* cookie.css */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    display: none;
    z-index: 1000;
}
#cookie-banner button {
    background: #fff;
    color: #333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 10px;
}
