/* Wrapper for positioning the marker */
.c2pa-marker-wrapper {
    position: relative;
    display: inline-block; /* To wrap the image tightly */
}

/* Custom C2PA Marker */
.c2pa-marker {
    position: absolute;
    top: 10px; /* Adjust as needed for margin */
    right: 10px; /* Adjust as needed for margin */
    z-index: 10; /* Ensure it's above the image */
    width: 24px; /* Example size for the marker */
    height: 24px; /* Example size for the marker */
    background-color: rgba(0, 0, 0, 0.7); /* Example background for visibility */
    border-radius: 4px; /* Slightly rounded corners */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Hide the original cai-indicator if it's still somehow present */
cai-indicator {
    display: none !important;
}
