﻿#consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99999;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
    transition: transform 0.4s;
}

    #consent-banner button {
        background: #6366f1;
        color: #fff;
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 6px;
        cursor: pointer;
        font-weight: bold;
        margin-left: 1rem;
    }

    #consent-banner.hide {
        transform: translateY(120%);
    }
