.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 15px;
    display: none; /* hidden until JS decides */
    z-index: 9999;
    text-align: center;
    font-family: Arial, sans-serif;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.3);
}

.cookie-buttons {
    margin-top: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 4px;
    font-size: 14px;
}

.cookie-btn.accept {
    background: #4CAF50;
    color: white;
}

.cookie-btn.reject {
    background: #d9534f;
    color: white;
}

.cookie-link {
    color: #9ddcff;
    text-decoration: underline;
}

.cookie-banner.show {
    display: block;
}
