#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #fff;
    padding: 16px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content a {
    color: #fff;
    text-decoration: none;
}

.cookie-buttons button {
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

#acceptCookies {
    background: #f4f4f4;
    color: #000;
}

#declineCookies {
    background: #f4f4f4;
    color: #000;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
