#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111827;
    color: white;
    padding: 15px 20px;
    font-size: 14px;
    z-index: 9999;
    display: none;
    box-sizing: border-box;
}

#cookie-banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}

#cookie-banner a {
    color: #22d3ee;
}

.acceptCookies,
.rejectCookies {
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}

.acceptCookies {
    background: #22d3ee;
    color: #000;
}

.rejectCookies {
    background: #ccc;
    color: #000;
}