html.digitexa-demo-mode,
html.digitexa-demo-mode body {
  -webkit-user-select: none;
  user-select: none;
}

html.digitexa-demo-mode input,
html.digitexa-demo-mode textarea,
html.digitexa-demo-mode select,
html.digitexa-demo-mode button,
html.digitexa-demo-mode a {
  -webkit-user-select: auto;
  user-select: auto;
}

html.digitexa-demo-mode img,
html.digitexa-demo-mode svg,
html.digitexa-demo-mode canvas,
html.digitexa-demo-mode video {
  -webkit-user-drag: none;
  user-drag: none;
}

.digitexa-demo-notice {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 2147483000;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 12px;
  width: min(390px, calc(100vw - 36px));
  padding: 14px 15px;
  color: #e5edf8;
  background: rgba(8, 17, 32, .92);
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(2, 6, 23, .34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  pointer-events: auto;
}

.digitexa-demo-notice__mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: #bfdbfe;
  background: linear-gradient(135deg, rgba(37, 99, 235, .28), rgba(8, 145, 178, .22));
  border: 1px solid rgba(147, 197, 253, .26);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .08em;
}

.digitexa-demo-notice__title {
  margin: 0 0 3px;
  color: #f8fafc;
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.25;
}

.digitexa-demo-notice__text {
  margin: 0;
  color: rgba(226, 232, 240, .76);
  font-size: .76rem;
  line-height: 1.48;
}

.digitexa-demo-notice__link {
  grid-column: 2;
  width: fit-content;
  color: #93c5fd;
  font-size: .76rem;
  font-weight: 800;
  text-decoration: none;
}

.digitexa-demo-notice__link:hover {
  color: #bfdbfe;
}

.digitexa-demo-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 2147483001;
  max-width: min(430px, calc(100vw - 32px));
  padding: 11px 14px;
  color: #f8fafc;
  background: rgba(15, 23, 42, .94);
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 9px;
  box-shadow: 0 14px 36px rgba(2, 6, 23, .28);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .82rem;
  line-height: 1.4;
  transform: translate3d(-50%, 18px, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.digitexa-demo-toast.is-visible {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

@media (max-width: 640px) {
  .digitexa-demo-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
}
