.cookie-banner{
    position:fixed;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);
    width:min(90%,700px);
    background:#fff;
    border:1px solid #ddd;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    padding:18px 22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    z-index:9999;
    font-size:14px;
    line-height:1.5;
}

.cookie-actions{
    display:flex;
    gap:10px;
}

.cookie-actions button{
    padding:10px 18px;
    border:1px solid #222;
    background:white;
    cursor:pointer;
}

.cookie-actions button:first-child{
    background:#222;
    color:white;
}

@media(max-width:700px){
.cookie-banner{
    flex-direction:column;
    text-align:center;
}
}