html.wccp-css-protected,
html.wccp-css-protected body,
body.unselectable {
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -khtml-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
}

body.unselectable {
  cursor: default;
}

#wccp-toast-root {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99999999;
}

.wccp-toast-wrap {
  position: fixed;
  display: flex;
  max-width: calc(100vw - 24px);
}

.wccp-pos-top-left { top: 16px; left: 16px; }
.wccp-pos-top-center { top: 16px; left: 50%; transform: translateX(-50%); }
.wccp-pos-top-right { top: 16px; right: 16px; }
.wccp-pos-bottom-left { bottom: 16px; left: 16px; }
.wccp-pos-bottom-center { bottom: 16px; left: 50%; transform: translateX(-50%); }
.wccp-pos-bottom-right { bottom: 16px; right: 16px; }

.wccp-toast {
  pointer-events: none;
  min-width: 280px;
  max-width: 420px;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 35px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(10px) scale(.98);
  transition: opacity .22s ease, transform .22s ease;
  border: 1px solid rgba(255,255,255,.14);
}

.wccp-toast.wccp-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wccp-theme-dark {
  background: rgba(15,23,42,.92);
  color: #fff;
}

.wccp-theme-light {
  background: rgba(255,255,255,.94);
  color: #111827;
  border-color: rgba(0,0,0,.08);
}

.wccp-toast-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.wccp-toast-icon {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  flex: 0 0 12px;
}

.wccp-toast-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.wccp-toast-body {
  font-size: 13px;
  line-height: 1.45;
}

.wccp-toast-brand {
  margin-top: 8px;
  font-size: 11px;
  opacity: .8;
}

@media print {
  body * {
    display: none !important;
  }
  body::after {
    content: attr(data-wccp-print-message);
    display: block;
    margin: 40px;
    font-size: 22px;
  }
}
