/**
 * Content Protector Public Styles
 */

/* Watermark container styles */
.content-protector-watermark-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

/* Watermark overlay styles */
.content-protector-watermark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

/* Protected image styles */
img[draggable="false"] {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Disable selection when that feature is enabled */
body.content-protector-no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Notification for blocked actions */
.content-protector-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.content-protector-notification.show {
    opacity: 1;
    transform: translateY(0);
}