#cookieBanner{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#111;
color:#fff;
padding:20px;
z-index:9999;
font-family:Arial, sans-serif;
box-shadow:0 -3px 10px rgba(0,0,0,0.3);
}

.cookie-inner{
max-width:900px;
margin:auto;
text-align:center;
}

.cookie-buttons{
margin-top:15px;
}

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

.cookie-accept{
background:#2ecc71;
color:white;
}

.cookie-reject{
background:#e74c3c;
color:white;
}

.cookie-settings{
background:#f1c40f;
color:black;
}

@media(max-width:600px){
.cookie-buttons button{
width:100%;
margin:5px 0;
}
}