@keyframes bcc-slide-up {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

#bcc-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #003ca5;
    color: #fff;
    z-index: 9000;
    padding: 16px 24px;
    display: none;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.25);
}

#bcc-cookie-banner.bcc-open {
    display: flex;
    animation: bcc-slide-up 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.bcc-msg {
    flex: 1;
    margin: 0;
    font-size: 14px;
    min-width: 200px;
    color: white;
}

.bcc-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bcc-btn {
    display: inline-block;
    background: #fff;
    color: #003ca5 !important;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
    border-radius: 3px;
    text-decoration: none !important;
    white-space: nowrap;
    line-height: 1.4;
}

.bcc-btn:hover,
.bcc-btn:focus {
    background: #e8e8e8;
    color: #003ca5 !important;
    text-decoration: none !important;
    outline: none;
}

#bcc-cookie-revoke {
    position: fixed;
    bottom: 0;
    left: 3em;
    background: #003ca5;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    cursor: pointer;
    z-index: 9000;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    display: none;
}

#bcc-cookie-revoke:hover {
    background: #002d7a;
}
