.acsp-no-select body,
.acsp-no-select body *:not(input):not(textarea):not(select) {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.acsp-warning-toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%) translateY(20px);
  z-index: 999999;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.94);
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  opacity: 0;
  transition: all .25s ease;
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}

.acsp-warning-toast.acsp-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.acsp-devtools-overlay {
  position: fixed;
  inset: 0;
  z-index: 999998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .88);
  color: #fff;
  text-align: center;
  padding: 24px;
}

.acsp-devtools-overlay > div {
  max-width: 460px;
  padding: 28px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

.acsp-devtools-overlay strong {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
}

.acsp-devtools-overlay p {
  margin: 0;
  font-size: 16px;
}

@media print {
  body {
    display: none !important;
  }
}
