/* selvi.org — İçerik Koruma CSS
   - Sayfa genelinde metin seçimini engelle
   - Form alanlarında (input/textarea/select) seçimi geri aç
   - Resimleri sürüklenemez ve seçilemez yap */

html, body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

/* Form elemanlarında seçim aktif */
input,
textarea,
select,
[contenteditable="true"] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
  -webkit-touch-callout: default !important;
}

/* Resim koruması */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

/* Link içindeki resimler tıklanabilir kalsın */
a img,
button img {
  pointer-events: auto;
}

/* Yazdırma engelleme (Ctrl+P görsel olarak da bozulsun) */
@media print {
  body {
    display: none !important;
  }
  html::before {
    content: "© selvi.org — Bu içerik telif hakkı ile korunmaktadır, yazdırma izni yoktur.";
    display: block;
    padding: 40px;
    font-size: 18px;
    color: #000;
  }
}
