/**
 * استایل‌های محافظت از ویدئو - نسخه 1.0.2
 * @package Video_Guard_Med
 * @author مداسکالر | MedScholar
 */

/* ============================================
   استایل‌های اصلی محافظت
   ============================================ */

/* کانتینر ویدئو */
.vgm-video-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

/* ویدئوی محافظت شده */
.vgm-protected-video {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    
    /* جلوگیری از انتخاب متن - اما نه از تعامل با پلیر */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
    /* پشتیبانی از تاچ */
    -webkit-touch-callout: none;
    touch-action: manipulation;
}

/* ============================================
   مخفی کردن ONLY دکمه دانلود
   ============================================ */

/* Chrome/Edge/Safari - فقط دکمه دانلود */
video.vgm-protected-video::-webkit-media-controls-download-button {
    display: none !important;
}

/* Firefox - فقط دکمه دانلود */
video.vgm-protected-video::-moz-controls-download-button {
    display: none !important;
}

/* ============================================
   انیمیشن‌ها
   ============================================ */

@keyframes vgmSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes vgmFadeOut {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

/* ============================================
   استایل‌های ریسپانسیو
   ============================================ */

@media screen and (max-width: 768px) {
    .vgm-video-container {
        border-radius: 0;
    }
    
    .vgm-protected-video {
        width: 100% !important;
        height: auto !important;
    }
}

/* ============================================
   استایل‌های پنل مدیریت
   ============================================ */

.vgm-admin-wrap .form-table th {
    padding: 20px 0 20px 10px;
}

.vgm-admin-wrap .form-table input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}