.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px;
    border-top: 2px solid #ccc;
    font-size: 14px;
    z-index: 9999;
}
.cookie-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cookie-banner-buttons button {
    margin-left: 10px;
}
.cookie-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}
.cookie-modal-content {
    background: #fff;
    padding: 20px;
    max-width: 400px;
    width: 90%;
}
.hidden {
    display: none;
}
