/**
 * @copyright   (C) 2026 Courseman Project
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 *
 * Non-destructive overlay for images flagged as AI generated. The wrapper keeps
 * the original image untouched and positions the EU watermark badge over it.
 */


.aiwatermark--background {
    position: relative;
}

.aiwatermark__overlay {
    position: absolute;
    right: 6px;
    bottom: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: #13253c;
    border-radius: 4px;
    pointer-events: none;
    z-index: 1;
}

.aiwatermark__badge {
    width: auto;
    height: 22px;
    max-height: 22px;
    min-height: 0;
    margin: 0;
    padding: 0;
    opacity: 1;
}

.aiwatermark__label {
    font-size: 11px;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
}
