#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
    z-index: 1000;
}

#cookie-banner.show {
    display: block;
}

#cookie-banner button {
    background-color: #FF4B00;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

#cookie-banner a {
    color: #ccc;
    font-size: 12px;
    margin-left: 15px;
    text-decoration: underline;
}

#cookie-banner button.accept-cookies {
    background-color: #FF4B00;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 20px;
}