.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, sans-serif;
    z-index: 1000;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner a {
    color: #4caf50;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-banner button {
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
}

#accept-cookies {
    background: #4caf50;
    color: #fff;
}

#accept-cookies:hover {
    background: #45a049;
}

#reject-cookies {
    background: #f44336;
    color: #fff;
}

#reject-cookies:hover {
    background: #d32f2f;
}

.cookie-banner.hidden {
    display: none;
}