/* cookie-bar starter layout — tweak as you like */
.cookie-bar{
    position:fixed;
    bottom:0;                 /* stick to bottom edge */
    left:0;
    width:100%;
    background:#f5f5f5;
    padding:1rem;
    box-shadow:0 -2px 6px rgba(0,0,0,.15);
    display:flex;
    gap:.75rem;
    justify-content:center;
    align-items:center;
    z-index:9999;             /* make sure it’s above all content */
}

.cookie-bar button{
    padding:.4rem .9rem;
    border:0;
    border-radius:4px;
    cursor:pointer;
}

.cookie-bar .cookie-consent__accept{background:#198754;color:#fff;}
.cookie-bar .cookie-consent__decline{background:#dc3545;color:#fff;}
