/* AlexTech.ai Chatbot — Widget
   Tema: dark cyan glass, integrato con il design system del sito
   - Bottom-left per non sovrapporsi a back-to-top (bottom-right)
   - Usa le CSS variables del sito (--brand, --black, --surface, ecc.)
   - High-specificity per evitare conflitti con host styles
*/

/* ── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --oracle-primary: var(--brand, #00d4ff);
  --oracle-primary-dim: var(--brand-dim, #0099bb);
  --oracle-bg: #06060c;
  --oracle-bg-2: #0c0d17;
  --oracle-surface: #14152a;
  --oracle-text: #e8e8f0;
  --oracle-text-dim: #a2a2c0;
  --oracle-border: rgba(255, 255, 255, 0.08);
  --oracle-border-strong: rgba(255, 255, 255, 0.16);
  --oracle-glow: 0 0 24px rgba(0, 212, 255, 0.4);
  --oracle-glow-strong: 0 0 32px rgba(0, 212, 255, 0.6);
  --oracle-radius: 16px;
  --oracle-z: 9000;
}

/* ── WIDGET ROOT ────────────────────────────────────────────────────────── */
html body #alextech-oracle {
  position: fixed !important;
  bottom: 1.25rem !important;
  left: 1.25rem !important;
  z-index: var(--oracle-z) !important;
  font-family: var(--font-body, 'DM Sans', system-ui, sans-serif) !important;
  pointer-events: none;
}

/* ── TOGGLE BUTTON (sempre presente, si nasconde solo all'apertura) ──── */
html body #alextech-oracle #oracle-toggle {
  pointer-events: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.625rem !important;
  padding: 0.625rem 1rem 0.625rem 0.625rem !important;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.18), rgba(0, 212, 255, 0.08)) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(0, 212, 255, 0.35) !important;
  border-radius: 999px !important;
  color: var(--oracle-text) !important;
  font-family: var(--font-display, 'Syne', sans-serif) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  box-shadow: var(--shadow-md, 0 8px 32px rgba(0, 0, 0, 0.35)) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
  letter-spacing: -0.01em;
  user-select: none !important;
  white-space: nowrap;
}

html body #alextech-oracle #oracle-toggle:hover {
  transform: translateY(-2px) !important;
  border-color: var(--oracle-primary) !important;
  box-shadow: var(--oracle-glow), 0 12px 36px rgba(0, 0, 0, 0.45) !important;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.28), rgba(0, 212, 255, 0.12)) !important;
}

html body #alextech-oracle #oracle-toggle .oracle-icon {
  display: inline-flex !important;
  width: 28px !important;
  height: 28px !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, var(--oracle-primary), var(--oracle-primary-dim)) !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.5) !important;
}

html body #alextech-oracle #oracle-toggle .oracle-icon svg {
  width: 16px !important;
  height: 16px !important;
  color: var(--oracle-bg) !important;
}

html body #alextech-oracle #oracle-toggle .oracle-label {
  color: var(--oracle-text);
}

/* Nascondi il toggle se la chat è aperta */
html body.oracle-chat-open #alextech-oracle #oracle-toggle {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(8px) !important;
}

/* ── CHAT WINDOW ───────────────────────────────────────────────────────── */
html body #alextech-oracle #oracle-window {
  pointer-events: auto !important;
  position: fixed !important;
  bottom: 1.25rem !important;
  left: 1.25rem !important;
  width: min(420px, calc(100vw - 2.5rem)) !important;
  height: min(620px, calc(100vh - 2.5rem)) !important;
  max-height: calc(100vh - 2.5rem) !important;
  display: none;
  flex-direction: column !important;
  background: var(--oracle-bg) !important;
  background-image: linear-gradient(180deg, var(--oracle-bg) 0%, var(--oracle-bg-2) 100%) !important;
  border: 1px solid var(--oracle-border-strong) !important;
  border-radius: var(--oracle-radius) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 212, 255, 0.1) !important;
  overflow: hidden !important;
  animation: oracle-window-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: var(--oracle-z) !important;
}

html body.oracle-chat-open #alextech-oracle #oracle-window {
  display: flex !important;
}

@keyframes oracle-window-in {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── HEADER ────────────────────────────────────────────────────────────── */
html body #alextech-oracle #oracle-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0.875rem 1rem !important;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(139, 92, 246, 0.08)) !important;
  border-bottom: 1px solid var(--oracle-border) !important;
  flex-shrink: 0 !important;
}

html body #alextech-oracle #oracle-header .oracle-title-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 0.625rem !important;
  min-width: 0 !important;
}

html body #alextech-oracle #oracle-header .oracle-avatar {
  display: inline-flex !important;
  width: 32px !important;
  height: 32px !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, var(--oracle-primary), var(--oracle-primary-dim)) !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

html body #alextech-oracle #oracle-header .oracle-avatar svg {
  width: 18px !important;
  height: 18px !important;
  color: var(--oracle-bg);
}

html body #alextech-oracle #oracle-header .oracle-title {
  font-family: var(--font-display, 'Syne', sans-serif) !important;
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
  color: var(--oracle-text) !important;
  line-height: 1.2 !important;
}

html body #alextech-oracle #oracle-header .oracle-subtitle {
  font-size: 0.6875rem !important;
  color: var(--oracle-text-dim) !important;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.oracle-status-dot {
  display: inline-block !important;
  width: 6px !important;
  height: 6px !important;
  background: #22c55e !important;
  border-radius: 50% !important;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6) !important;
}

html body #alextech-oracle #oracle-header .oracle-header-actions {
  display: flex !important;
  gap: 0.25rem !important;
  flex-shrink: 0 !important;
}

html body #alextech-oracle #oracle-header .oracle-icon-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  color: var(--oracle-text-dim) !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  font-size: 16px !important;
  padding: 0 !important;
}

html body #alextech-oracle #oracle-header .oracle-icon-btn:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  color: var(--oracle-text) !important;
  border-color: var(--oracle-border) !important;
}

html body #alextech-oracle #oracle-header .oracle-icon-btn.danger:hover {
  background: rgba(239, 68, 68, 0.12) !important;
  color: #fca5a5 !important;
  border-color: rgba(239, 68, 68, 0.3) !important;
}

html body #alextech-oracle #oracle-header .oracle-icon-btn svg {
  width: 16px !important;
  height: 16px !important;
}

/* ── MESSAGES ─────────────────────────────────────────────────────────── */
html body #alextech-oracle #oracle-messages {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 1.25rem !important;
  scroll-behavior: smooth !important;
  background: var(--oracle-bg) !important;
}

html body #alextech-oracle #oracle-messages::-webkit-scrollbar { width: 6px; }
html body #alextech-oracle #oracle-messages::-webkit-scrollbar-track { background: transparent; }
html body #alextech-oracle #oracle-messages::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 3px; }
html body #alextech-oracle #oracle-messages::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.2); }

/* Message bubbles */
html body #alextech-oracle .oracle-msg {
  display: flex !important;
  gap: 0.625rem !important;
  margin-bottom: 1rem !important;
  animation: oracle-msg-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes oracle-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

html body #alextech-oracle .oracle-msg-bubble {
  padding: 0.75rem 0.875rem !important;
  border-radius: 14px !important;
  font-size: 0.875rem !important;
  line-height: 1.55 !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  max-width: 100% !important;
}

html body #alextech-oracle .oracle-msg.user {
  flex-direction: row-reverse !important;
}

html body #alextech-oracle .oracle-msg.user .oracle-msg-bubble {
  background: linear-gradient(135deg, var(--oracle-primary), var(--oracle-primary-dim)) !important;
  color: var(--oracle-bg) !important;
  border-bottom-right-radius: 4px !important;
}

html body #alextech-oracle .oracle-msg.bot .oracle-msg-bubble {
  background: var(--oracle-surface) !important;
  color: var(--oracle-text) !important;
  border-bottom-left-radius: 4px !important;
  border: 1px solid var(--oracle-border) !important;
}

html body #alextech-oracle .oracle-msg.error .oracle-msg-bubble {
  background: rgba(239, 68, 68, 0.12) !important;
  color: #fca5a5 !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
  border-bottom-left-radius: 4px !important;
}

html body #alextech-oracle .oracle-msg-avatar {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.625rem !important;
  font-weight: 700 !important;
  font-family: var(--font-display, 'Syne', sans-serif) !important;
  margin-top: 2px;
}

html body #alextech-oracle .oracle-msg.bot .oracle-msg-avatar {
  background: linear-gradient(135deg, var(--oracle-primary), var(--oracle-primary-dim)) !important;
  color: var(--oracle-bg) !important;
}
html body #alextech-oracle .oracle-msg.bot .oracle-msg-avatar svg {
  width: 14px !important;
  height: 14px !important;
  display: block !important;
}

html body #alextech-oracle .oracle-msg.user .oracle-msg-avatar {
  background: var(--oracle-surface) !important;
  color: var(--oracle-primary) !important;
  border: 1px solid var(--oracle-border) !important;
}

/* Markdown content styling inside bot bubbles */
html body #alextech-oracle .oracle-msg-bubble p {
  margin: 0 0 0.5rem !important;
}
html body #alextech-oracle .oracle-msg-bubble p:last-child {
  margin-bottom: 0 !important;
}

html body #alextech-oracle .oracle-msg-bubble strong {
  color: var(--oracle-primary) !important;
  font-weight: 600 !important;
}

html body #alextech-oracle .oracle-msg-bubble em {
  color: var(--oracle-text-dim) !important;
}

html body #alextech-oracle .oracle-msg-bubble a {
  color: var(--oracle-primary) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
  text-decoration-thickness: 1px !important;
  font-weight: 500 !important;
}

html body #alextech-oracle .oracle-msg-bubble a:hover {
  color: var(--oracle-text) !important;
  text-decoration-color: var(--oracle-primary) !important;
}

html body #alextech-oracle .oracle-msg-bubble code {
  font-family: var(--font-mono, 'JetBrains Mono', monospace) !important;
  background: rgba(0, 212, 255, 0.1) !important;
  padding: 1px 6px !important;
  border-radius: 4px !important;
  font-size: 0.8125rem !important;
  color: var(--oracle-primary) !important;
}

html body #alextech-oracle .oracle-msg-bubble ul,
html body #alextech-oracle .oracle-msg-bubble ol {
  margin: 0.5rem 0 !important;
  padding-left: 1.25rem !important;
}

html body #alextech-oracle .oracle-msg-bubble li {
  margin-bottom: 0.25rem !important;
}

html body #alextech-oracle .oracle-msg-bubble li::marker {
  color: var(--oracle-primary) !important;
}

/* Sources list (rendered at the bottom of bot messages) */
html body #alextech-oracle .oracle-sources {
  margin-top: 0.75rem !important;
  padding-top: 0.75rem !important;
  border-top: 1px dashed var(--oracle-border) !important;
  font-size: 0.75rem !important;
}

html body #alextech-oracle .oracle-sources-title {
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: var(--oracle-text-dim) !important;
  font-weight: 600 !important;
  font-size: 0.6875rem !important;
  margin-bottom: 0.375rem !important;
}

html body #alextech-oracle .oracle-source-item {
  display: block !important;
  padding: 0.25rem 0 !important;
  color: var(--oracle-text-dim) !important;
  text-decoration: none !important;
  font-size: 0.75rem !important;
  line-height: 1.3 !important;
  transition: color 0.2s !important;
}

html body #alextech-oracle .oracle-source-item:hover {
  color: var(--oracle-primary) !important;
}

html body #alextech-oracle .oracle-source-item .oracle-source-type {
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 4px !important;
  font-size: 0.5625rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  line-height: 18px !important;
  margin-right: 0.375rem !important;
  text-transform: uppercase !important;
  vertical-align: middle;
}

html body #alextech-oracle .oracle-source-item .oracle-source-type.blog {
  background: rgba(139, 92, 246, 0.2) !important;
  color: #c4b5fd !important;
}

html body #alextech-oracle .oracle-source-item .oracle-source-type.news {
  background: rgba(0, 212, 255, 0.15) !important;
  color: var(--oracle-primary) !important;
}

/* Suggestion chips */
html body #alextech-oracle .oracle-suggestions {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.375rem !important;
  margin-top: 0.75rem !important;
  width: 100% !important;
}

html body #alextech-oracle .oracle-suggestion {
  padding: 0.45rem 0.75rem !important;
  background: rgba(0, 212, 255, 0.08) !important;
  border: 1px solid rgba(0, 212, 255, 0.25) !important;
  border-radius: 999px !important;
  color: var(--oracle-primary) !important;
  font-size: 0.75rem !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  font-family: inherit !important;
  text-align: left !important;
  width: 100% !important;
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

html body #alextech-oracle .oracle-suggestion i {
  font-style: italic !important;
  opacity: 0.7 !important;
}

html body #alextech-oracle .oracle-suggestion:hover {
  background: rgba(0, 212, 255, 0.16) !important;
  border-color: var(--oracle-primary) !important;
  transform: translateY(-1px);
}




/* Typing indicator */
html body #alextech-oracle .oracle-msg.typing .oracle-msg-bubble {
  display: flex !important;
  align-items: center !important;
  gap: 0.375rem !important;
  padding: 0.875rem 1rem !important;
}

.oracle-typing-dot {
  width: 6px !important;
  height: 6px !important;
  background: var(--oracle-primary) !important;
  border-radius: 50% !important;
  animation: oracle-typing 1.4s infinite !important;
}

.oracle-typing-dot:nth-child(2) { animation-delay: 0.2s !important; }
.oracle-typing-dot:nth-child(3) { animation-delay: 0.4s !important; }

@keyframes oracle-typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* ── INPUT AREA ────────────────────────────────────────────────────────── */
html body #alextech-oracle #oracle-input-area {
  display: flex !important;
  gap: 0.5rem !important;
  padding: 0.875rem !important;
  border-top: 1px solid var(--oracle-border) !important;
  background: var(--oracle-bg-2) !important;
  flex-shrink: 0 !important;
}

html body #alextech-oracle #oracle-input {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  padding: 0.625rem 0.875rem !important;
  background: var(--oracle-surface) !important;
  border: 1px solid var(--oracle-border) !important;
  border-radius: 12px !important;
  color: var(--oracle-text) !important;
  font-family: inherit !important;
  font-size: 0.875rem !important;
  resize: none !important;
  outline: none !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  max-height: 120px !important;
  min-height: 38px !important;
  line-height: 1.4 !important;
}

html body #alextech-oracle #oracle-input:focus {
  border-color: var(--oracle-primary) !important;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15) !important;
}

html body #alextech-oracle #oracle-input::placeholder {
  color: var(--oracle-text-dim) !important;
  opacity: 0.6 !important;
}

html body #alextech-oracle #oracle-send {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  background: linear-gradient(135deg, var(--oracle-primary), var(--oracle-primary-dim)) !important;
  border: none !important;
  border-radius: 12px !important;
  color: var(--oracle-bg) !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  transition: all 0.2s !important;
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.3) !important;
}

html body #alextech-oracle #oracle-send:hover:not(:disabled) {
  transform: translateY(-1px) !important;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5) !important;
}

html body #alextech-oracle #oracle-send:disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
}

html body #alextech-oracle #oracle-send svg {
  width: 18px !important;
  height: 18px !important;
}

/* Footer note (powered by + privacy) */
html body #alextech-oracle #oracle-footer {
  padding: 0.5rem 11px 0.625rem !important;
  border-top: 1px solid var(--oracle-border) !important;
  font-size: 0.6875rem !important;
  color: var(--oracle-text-dim) !important;
  text-align: center !important;
  background: var(--oracle-bg-2) !important;
  flex-shrink: 0 !important;
  line-height: 1.5 !important;
}

html body #alextech-oracle #oracle-footer a {
  color: var(--oracle-text-dim) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
}

html body #alextech-oracle #oracle-footer a:hover {
  color: var(--oracle-primary) !important;
}

html body #alextech-oracle .oracle-footer-sep {
  margin: 0 0.375rem !important;
}

html body #alextech-oracle .oracle-credits {
  font-size: 0.6875rem !important;
  color: var(--oracle-text-dim) !important;
  white-space: nowrap !important;
}

/* ── MOBILE FULL-SCREEN ────────────────────────────────────────────────── */
@media screen and (max-width: 768px) {
  html body #alextech-oracle #oracle-toggle {
    bottom: 1rem !important;
    left: 1rem !important;
    padding: 0.5rem 0.875rem 0.5rem 0.5rem !important;
    font-size: 0.8125rem !important;
  }

  html body #alextech-oracle #oracle-window {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: 100vh !important;
    max-height: 100vh !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    border-radius: 0 !important;
    border: none !important;
    box-sizing: border-box !important;
  }

  html.oracle-chat-open,
  html body.oracle-chat-open {
    overflow: hidden !important;
    overscroll-behavior: none !important;
  }

  html body #alextech-oracle #oracle-input {
    font-size: 1rem !important;
  }

  html body #alextech-oracle #oracle-header .oracle-icon-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.06) !important;
  }

  html body #alextech-oracle #oracle-header .oracle-icon-btn:active {
    background: rgba(255, 255, 255, 0.14) !important;
  }

  html body #alextech-oracle #oracle-header .oracle-icon-btn svg {
    width: 22px !important;
    height: 22px !important;
  }

  html body #alextech-oracle #oracle-header .oracle-icon-btn.danger:hover {
    background: rgba(239, 68, 68, 0.2) !important;
  }

  html body #alextech-oracle #oracle-toggle .oracle-label {
    display: none !important;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html body #alextech-oracle #oracle-window,
  html body #alextech-oracle .oracle-msg {
    animation: none !important;
  }
  html body #alextech-oracle #oracle-toggle:hover {
    transform: none !important;
  }
}

/* ── Reset modal ──────────────────────────────────── */
html body #alextech-oracle .oracle-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

html body #alextech-oracle .oracle-modal[aria-hidden="false"] {
  display: flex;
}

html body #alextech-oracle .oracle-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

html body #alextech-oracle .oracle-modal-card {
  position: relative;
  background: #1a1a2e;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  padding: 1.75rem 2rem 1.5rem;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: oracle-modal-in 0.2s ease-out;
}

@keyframes oracle-modal-in {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

html body #alextech-oracle .oracle-modal-text {
  margin: 0 0 1.25rem;
  color: #e0e0e0;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
  font-family: inherit;
}

html body #alextech-oracle .oracle-modal-actions {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
}

html body #alextech-oracle .oracle-modal-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
  min-width: 100px;
}

html body #alextech-oracle .oracle-modal-btn--cancel {
  background: rgba(255, 255, 255, 0.08);
  color: #aaa;
  border-color: rgba(255, 255, 255, 0.12);
}

html body #alextech-oracle .oracle-modal-btn--cancel:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #e0e0e0;
}

html body #alextech-oracle .oracle-modal-btn--confirm {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}

html body #alextech-oracle .oracle-modal-btn--confirm:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  html body #alextech-oracle .oracle-modal-card {
    animation: none !important;
  }
}
