/* Consent Banner Styles */
#consent-banner {
    /* display: none; */
    position: fixed;
    bottom: -100%;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 10px;
    text-align: center;
    z-index: 1000;
    transition: all .5s ease;
}

#consent-banner p {
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

#consent-banner button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
}

#consent-banner button#decline-consent {
    background: #f44336;
}

div#consent-banner.shown {
    bottom: 0;
}