/* =============================================
   SDK COOKIE-CONSENT BANNER
   Nutzt dieselben CD-Farben wie die Seiten
   ============================================= */
#cc-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20000;
    background: #0066B3;
    color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    border-top: 3px solid #F37021;
    padding: 20px 0;
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    animation: cc-slide-up 0.35s ease-out;
}
#cc-banner.cc-hidden { display: none; }

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

.cc-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.cc-text {
    flex: 1 1 420px;
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
}
.cc-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
    color: #ffffff;
}
.cc-text a {
    color: #ffffff;
    text-decoration: underline;
}
.cc-text a:hover { color: #FEF0E6; }

.cc-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cc-btn {
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, opacity 0.15s;
}
.cc-btn-accept {
    background: #F37021;
    color: #ffffff;
}
.cc-btn-accept:hover { background: #C85A10; }

.cc-btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.6);
}
.cc-btn-reject:hover { background: rgba(255,255,255,0.12); }

/* Footer-Link zum erneuten Öffnen */
.cc-settings-link {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}
.cc-settings-link:hover { color: #ffffff; text-decoration: underline; }

@media (max-width: 700px) {
    #cc-banner { padding: 16px 0; }
    .cc-inner { padding: 0 16px; gap: 14px; }
    .cc-actions { width: 100%; }
    .cc-btn { flex: 1 1 auto; text-align: center; }
}
