/* ========== Content Protection Styles ========== */
.czgt-no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.czgt-copy-overlay {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    z-index: 99999;
    font-size: 14px;
    font-family: 'Kanit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: czgt-slide-in 0.3s ease;
}

@keyframes czgt-slide-in {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.czgt-copy-overlay button {
    margin-left: 10px;
    padding: 6px 12px;
    border-radius: 6px;
    border: 0;
    background: #fff;
    color: #222;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s;
}

.czgt-copy-overlay button:hover {
    transform: scale(1.05);
}