/**
 * Content Protection Toast Styles
 */

.tnnt-protection-toast {
    position: fixed;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    z-index: 999999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.tnnt-protection-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Toast Positions */
.tnnt-toast-top-left {
    top: 20px;
    left: 20px;
}

.tnnt-toast-top-center {
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
}

.tnnt-toast-top-center.show {
    transform: translateX(-50%) translateY(0);
}

.tnnt-toast-top-right {
    top: 20px;
    right: 20px;
}

.tnnt-toast-bottom-left {
    bottom: 20px;
    left: 20px;
    transform: translateY(20px);
}

.tnnt-toast-bottom-left.show {
    transform: translateY(0);
}

.tnnt-toast-bottom-center {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
}

.tnnt-toast-bottom-center.show {
    transform: translateX(-50%) translateY(0);
}

.tnnt-toast-bottom-right {
    bottom: 20px;
    right: 20px;
    transform: translateY(20px);
}

.tnnt-toast-bottom-right.show {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .tnnt-protection-toast {
        left: 10px !important;
        right: 10px !important;
        transform: translateY(-20px) !important;
    }

    .tnnt-protection-toast.show {
        transform: translateY(0) !important;
    }

    .tnnt-toast-bottom-left,
    .tnnt-toast-bottom-center,
    .tnnt-toast-bottom-right {
        transform: translateY(20px) !important;
    }

    .tnnt-toast-bottom-left.show,
    .tnnt-toast-bottom-center.show,
    .tnnt-toast-bottom-right.show {
        transform: translateY(0) !important;
    }
}
