/* CopyBlocker Pro Frontend Styles
 * Version: 1.1.0
 * Conditionally applied via JavaScript when disable_selection is enabled
 */
body {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

/* Retro Toast Notification */
#copyblocker-pro-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #050510;
    color: #00f3ff;
    padding: 15px 30px;
    border: 3px solid #007cf0;
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 12px;
    z-index: 999999;
    box-shadow: 6px 6px 0px rgba(0, 124, 240, 0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
    opacity: 0;
    pointer-events: none;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

#copyblocker-pro-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
