/* Main Protection Styles */
body.vegavat-protected {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Screenshot Protection Overlay */
#vegavat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.01);
    z-index: 999998;
    pointer-events: none;
    display: none;
}

/* Alert Box Base Styles */
.vegavat-alert-box {
    position: fixed;
    padding: 15px 25px;
    border-radius: 4px;
    z-index: 999999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: none;
    animation: vegavat-fadein 0.3s;
    text-align: center;
    max-width: 300px;
    font-size: 16px;
}

/* Position Classes */
.vegavat-alert-box.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vegavat-alert-box.top-left {
    top: 20px;
    left: 20px;
}

.vegavat-alert-box.top-right {
    top: 20px;
    right: 20px;
}

.vegavat-alert-box.bottom-left {
    bottom: 20px;
    left: 20px;
}

.vegavat-alert-box.bottom-right {
    bottom: 20px;
    right: 20px;
}

/* Animation */
@keyframes vegavat-fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Print Protection */
@media print {
    body.vegavat-protected {
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

/* Admin Color Picker */
.color-field {
    width: 100px !important;
}