/* WebKrali — özel sağ tık menüsü + sayfa koruması stilleri */

img, video, iframe, canvas {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

body {
  -webkit-touch-callout: none;
}

#wkToast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(20px);
  background: #0d1b2e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 99999;
  max-width: 90vw;
  text-align: center;
}
#wkToast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.wk-menu {
  position: fixed;
  min-width: 190px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(2, 16, 43, .18);
  padding: 6px;
  z-index: 99998;
  font-family: inherit;
  font-size: 14px;
}
.wk-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border: 0;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  color: #152238;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  margin: 0;
}
.wk-menu-item:hover, .wk-menu-item:focus {
  background: #eef4ff;
  outline: none;
}
.wk-menu-i {
  font-size: 16px;
  line-height: 1;
}
.wk-menu-sep {
  height: 1px;
  background: #eef1f6;
  margin: 5px 4px;
}