/**
 * KI-Kennzeichnung: Badge-Overlay (EU AI Act Art. 50).
 * Wird nur enqueued wenn die Site KI-markierte Bilder hat.
 */

.mlp-ai-badge {
    position: absolute;
    bottom: 6px;
    right: 6px;
    z-index: 2;
    display: inline-block;
    padding: 3px 8px;
    background: rgba(10, 57, 78, 0.75);
    color: #FCFCFC;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
    border-radius: 4px;
    pointer-events: none;
    white-space: nowrap;
    max-width: calc(100% - 12px);
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Pflicht-Hinweis auch im Druck sichtbar lassen */
@media print {
    .mlp-ai-badge {
        background: #FFFFFF;
        color: #0A394E;
        border: 1px solid #0A394E;
    }
}
