/* ── DK Consent Banner ─────────────────────────────────────────────────── */

#dk-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #1e293b;
    color: #f1f5f9;
    font-size: 14px;
    line-height: 1.55;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .3);
}

#dk-consent-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

#dk-consent-text {
    flex: 1 1 260px;
    margin: 0;
}

#dk-consent-text a {
    color: #93c5fd;
    text-decoration: underline;
}

#dk-consent-text a:hover {
    color: #bfdbfe;
}

#dk-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Reject — neutral, gleichwertig prominent */
#dk-consent-reject {
    background: transparent;
    color: #f1f5f9;
    border: 1px solid #64748b;
    padding: 9px 22px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: background .15s, border-color .15s;
}

#dk-consent-reject:hover,
#dk-consent-reject:focus-visible {
    background: #334155;
    border-color: #94a3b8;
    outline: none;
}

/* Accept — visuell hervorgehoben */
#dk-consent-accept {
    background: #2563eb;
    color: #fff;
    border: 1px solid #2563eb;
    padding: 9px 22px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: background .15s;
}

#dk-consent-accept:hover,
#dk-consent-accept:focus-visible {
    background: #1d4ed8;
    outline: none;
}

/* Mobile */
@media (max-width: 540px) {
    #dk-consent-inner {
        flex-direction: column;
        align-items: stretch;
    }

    #dk-consent-buttons {
        width: 100%;
    }

    #dk-consent-reject,
    #dk-consent-accept {
        flex: 1;
        text-align: center;
    }
}
