#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    color: white;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-size: 14px;
}
#cookie-banner p {
    margin: 0;
    flex-grow: 1;
}
#cookie-banner a {
    color: #6BB79B;
    text-decoration: underline;
}
#cookie-banner button {
    background-color: #6BB79B;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 20px;
}