/* Padibot — Persian/RTL floating AI chat widget — Padisarco theme */
#scb-root,
#scb-root * {
  box-sizing: border-box;
}
#scb-root {
  --scb-accent: #0d3b66; /* deep industrial navy */
  --scb-accent-2: #0a2e52;
  --scb-amber: #f5a524; /* warm amber accent */
  --scb-bg: #ffffff;
  --scb-text: #0f172a;
  --scb-muted: #64748b;
  --scb-bubble: #f1f5f9;
  --scb-border: rgba(15, 23, 42, 0.08);
  font-family:
    "Vazirmatn",
    "IRANSans",
    "Tahoma",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif!important;
  direction: rtl;
}
#scb-root,
#scb-root input,
#scb-root button,
#scb-root textarea {
  font-family: inherit;
}

/* Floating button */
.scb-fab {
  position: fixed;
  left: auto;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--scb-accent), var(--scb-accent-2));
  color: #fff;
  border: 0;
  box-shadow:
    0 14px 30px rgba(13, 59, 102, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.scb-fab::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid var(--scb-amber);
  opacity: 0;
  transition: opacity 0.2s;
}
.scb-fab {
  animation: scb-float 2.8s ease-in-out infinite;
}
.scb-fab:hover,
.scb-fab.is-open {
  animation: none;
}
.scb-fab:hover {
  transform: translateY(-2px);
}
.scb-fab:hover::after {
  opacity: 0.55;
}
@keyframes scb-float {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 14px 30px rgba(13, 59, 102, 0.45),
      0 2px 6px rgba(0, 0, 0, 0.12);
  }
  50% {
    transform: translateY(-8px);
    box-shadow:
      0 22px 36px rgba(13, 59, 102, 0.35),
      0 2px 6px rgba(0, 0, 0, 0.1);
  }
}
@keyframes scb-pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}
.scb-fab:not(.is-open)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid var(--scb-amber);
  animation: scb-pulse-ring 2.2s ease-out infinite;
  pointer-events: none;
}
.scb-fab svg {
  width: 26px;
  height: 26px;
}

/* Greeting tooltip bubble */
.scb-greet {
  position: fixed;
  left: auto;
  right: 96px;
  bottom: 32px;
  z-index: 99999;
  max-width: 280px;
  padding: 12px 14px 12px 12px;
  background: #fff;
  color: var(--scb-text);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(13, 59, 102, 0.22), 0 2px 6px rgba(0,0,0,0.06);
  font-size: 13px;
  line-height: 1.7;
  display: none;
  align-items: center;
  gap: 10px;
  animation: scb-pop 0.28s cubic-bezier(.2,.8,.2,1);
  border: 1px solid var(--scb-border);
  direction: rtl;
  unicode-bidi: plaintext;
  text-align: right;
}
.scb-greet.show {
  display: flex;
}
.scb-greet::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 18px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-right: 1px solid var(--scb-border);
  border-top: 1px solid var(--scb-border);
  transform: rotate(45deg);
  border-top-right-radius: 3px;
}
.scb-greet-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--scb-accent), var(--scb-accent-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.scb-greet-avatar svg { width: 18px; height: 18px; }
.scb-greet-body { flex: 1; min-width: 0; }
.scb-greet-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--scb-accent);
  margin-bottom: 2px;
}
.scb-greet-text {
  font-size: 12.5px;
  color: var(--scb-text);
  line-height: 1.7;
}
.scb-greet-close {
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--scb-muted);
  font-size: 20px;
  line-height: 1;
  padding: 0 2px;
  align-self: flex-start;
}
@keyframes scb-pop {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Panel */
.scb-panel {
  position: fixed;
  left: auto;
  right: 24px;
  bottom: 100px;
  z-index: 99999;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 580px;
  max-height: calc(100vh - 140px);
  background: var(--scb-bg);
  color: var(--scb-text);
  border-radius: 20px;
  box-shadow:
    0 30px 70px rgba(13, 59, 102, 0.25),
    0 4px 12px rgba(0, 0, 0, 0.06);
  display: none;
  flex-direction: column;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.8;
  border: 1px solid var(--scb-border);
}
.scb-panel.open {
  display: flex;
  animation: scb-rise 0.24s ease;
}
@keyframes scb-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Header */
.scb-head {
  padding: 16px 18px;
  background:linear-gradient(135deg, var(--scb-accent), var(--scb-accent-2));
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.scb-head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--scb-amber),
    transparent
  );
}
.scb-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--scb-accent);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}
.scb-avatar svg {
  width: 22px;
  height: 22px;
}
.scb-bot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  border-radius: 999px;
  display: block;
}
.scb-greet-avatar .scb-bot-img { padding: 2px; }
.scb-ai-avatar .scb-bot-img { padding: 2px; }
.scb-head-meta {
  flex: 1;
  min-width: 0;
}
.scb-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}
.scb-sub {
  font-size: 12px;
  opacity: 0.9;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.scb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}
.scb-close {
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  padding: 0;
}
.scb-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.scb-fab .scb-fab-close {
  display: none;
}
.scb-fab.is-open .scb-fab-chat {
  display: none;
}
.scb-fab.is-open .scb-fab-close {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lead form */
.scb-lead {
  padding: 20px 18px;
  background: #fff;
  flex: 1;
  overflow-y: auto;
}
.scb-lead-intro {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.scb-lead-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  background: #eff6ff;
  color: var(--scb-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scb-lead-badge svg {
  width: 22px;
  height: 22px;
}
.scb-lead-title {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--scb-text);
  font-weight: 500;
}
.scb-lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.scb-field {
  position: relative;
  background: #f8fafc;
  border: 1px solid var(--scb-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.scb-field:focus-within {
  border-color: var(--scb-accent);
  background: #fff;
}
.scb-ficon {
  color: var(--scb-muted);
  padding: 0 12px;
  display: flex;
  align-items: center;
}
.scb-ficon svg {
  width: 18px;
  height: 18px;
}
.scb-i {
   flex: 1!important;
  border: 0!important;
  background: transparent!important;
  outline: none!important;
  padding: 12px 4px 12px 14px!important;
  font-size: 14px!important;
  color: var(--scb-text)!important;
  width: 100%!important;
  margin: auto!important;
}
.scb-i::placeholder {
  color: var(--scb-muted);
}
.scb-phone {
  letter-spacing: 0.5px;
}
.scb-lead-err {
  color: #b91c1c;
  font-size: 12.5px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 8px 12px;
  border-radius: 10px;
}
.scb-lead-submit {
  margin-top: 4px;
  background: linear-gradient(135deg, var(--scb-accent), var(--scb-accent-2));
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 8px 20px rgba(13, 59, 102, 0.3);
}
.scb-lead-submit:hover {
  transform: translateY(-1px);
}
.scb-lead-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.scb-lead-submit.loading {
  position: relative;
  color: transparent;
}
.scb-lead-submit.loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: scb-spin 0.8s linear infinite;
}
@keyframes scb-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ─── Messages area ──────────────────────────────────────────── */
.scb-msgs-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.scb-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  direction: rtl;
}

/* ─── Messages area background — easy override class ────────────
   To customize the chat window background, edit .scb-msgs-bg
   below. Three options:

   Option 1 — CSS variable (set anywhere above #scb-root):
     #scb-root { --scb-msgs-bg: #f0f4ff; }

   Option 2 — edit the .scb-msgs-bg block below directly.

   Option 3 — remove the image:
     set background-image: none; in the block below.
─────────────────────────────────────────────────────────────── */

/* ↓↓ EDIT THIS BLOCK to change the chat window background ↓↓ */
.scb-msgs-bg {
  background-color: var(--scb-msgs-bg, #ffffff); /* solid fallback color */
  background-image: url("./faded-background.png"); /* set none to remove  */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
/* ↑↑ END editable background block ↑↑ */


/* ─── Message rows ───────────────────────────────────────────── */
.scb-row {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  max-width: 100%;
  /* LTR layout so left/right mean physical left/right regardless of RTL */
  direction: ltr;
}

/* AI message row: avatar on the physical LEFT, bubble after */
.scb-row.bot {
  justify-content: flex-start;
  flex-direction: row; /* avatar | bubble */
}

/* User message row: bubble on the physical LEFT of row, avatar on RIGHT */
.scb-row.user {
  display: flex;
  justify-content: end;
  align-items: end; /* avatar | bubble, reversed so avatar stays right */
}

/* ─── Mini avatar (chat window only) ────────────────────────── */
.scb-row .scb-ai-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

/* AI avatar: white circle with accent icon / image */
.scb-row.bot .scb-ai-avatar {
  background: #fff;
  color: var(--scb-accent);
  border: 2px solid rgba(13, 59, 102, 0.12);
}

/* AI avatar SVG size inside chat row */
.scb-row.bot .scb-ai-avatar svg {
  width: 18px;
  height: 18px;
}

/* AI avatar image inside chat row */
.scb-row.bot .scb-ai-avatar .scb-bot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 3px;
  border-radius: 999px;
}

/* User avatar: gradient circle with white icon */
.scb-row.user .scb-ai-avatar,
.scb-user-avatar {
  background: linear-gradient(135deg, var(--scb-accent), var(--scb-accent-2));
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}

.scb-row .scb-ai-avatar svg,
.scb-user-avatar svg {
  width: 16px;
  height: 16px;
}

/* Bubble wrapper (column: bubble + timestamp) */
.scb-row .scb-msg-wrap,
.scb-row > div:not(.scb-ai-avatar) {
  min-width: 0;
  max-width: calc(100% - 46px);
  display: flex;
  flex-direction: column;
}
.scb-row.user .scb-msg-wrap,
.scb-row.user > div:not(.scb-ai-avatar) { align-items: flex-end; }
.scb-row.bot .scb-msg-wrap,
.scb-row.bot  > div:not(.scb-ai-avatar) { align-items: flex-start; }

.scb-msg-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  direction: rtl;
}

.scb-reply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(13, 59, 102, 0.06);
  color: var(--scb-accent);
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.scb-row:hover .scb-reply-btn,
.scb-row:focus-within .scb-reply-btn {
  opacity: 1;
}

.scb-reply-btn:hover {
  background: rgba(13, 59, 102, 0.12);
  color: var(--scb-accent);
  transform: translateY(-1px);
}

@media (hover: none) {
  .scb-reply-btn {
    opacity: 1;
  }
}

.scb-reply-quote {
  display: block;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  border-right: 3px solid var(--scb-accent);
  background: rgba(13, 59, 102, 0.06);
  font-size: 12px;
  line-height: 1.6;
}

.scb-row.user .scb-reply-quote {
  background: rgba(255, 255, 255, 0.14);
  border-right-color: rgba(255, 255, 255, 0.85);
}

.scb-reply-quote-label {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
  opacity: 0.85;
}

.scb-reply-quote-text {
  display: block;
  opacity: 0.9;
}

.scb-reply-preview-close {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--scb-muted, #64748b);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  margin-top: 2px;
}

.scb-reply-preview-close:hover {
  background: rgba(13, 59, 102, 0.08);
  color: var(--scb-accent);
}

/* ─── Bubbles ────────────────────────────────────────────────── */
.scb-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 100%;
  width: fit-content;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: normal;
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
  direction: rtl;
  unicode-bidi: plaintext;
  text-align: right;
}

/* AI bubble — light, left-anchored tail */
.scb-row.bot .scb-bubble {
  background: var(--scb-bubble);
  color: var(--scb-text);
  border-bottom-left-radius: 4px;
  border: 1px solid var(--scb-border);
  text-align: right;
}

/* User bubble — navy gradient, right-anchored tail */
.scb-row.user .scb-bubble {
  background: linear-gradient(135deg, var(--scb-accent), var(--scb-accent-2));
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 6px 14px rgba(13, 59, 102, 0.25);
  text-align: right;
}

.scb-row.bot.err .scb-bubble {
  background: #fef2f2;
  color: #b91c1c;
  border-color: #fecaca;
}

/* Timestamp */
.scb-time {
  display: block;
  font-size: 10.5px;
  color: var(--scb-muted);
  margin-top: 4px;
  padding: 0 4px;
}
.scb-row.user .scb-time { text-align: left; }
.scb-row.bot  .scb-time { text-align: left; }

/* ─── Typing indicator ──────────────────────────────────────── */
.scb-typing-indicator {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  height: 22px;
  padding: 0 2px;
  background: transparent;
  direction: ltr;
}

.scb-typing-indicator span {
  display: inline-block !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background-color: var(--scb-accent, #0d3b66) !important;
  animation: scb-bounce 1.1s infinite ease-in-out !important;
  opacity: 0.6;
}

.scb-typing-indicator span:nth-child(1) { animation-delay: 0s; }
.scb-typing-indicator span:nth-child(2) { animation-delay: 0.18s; }
.scb-typing-indicator span:nth-child(3) { animation-delay: 0.36s; }

@keyframes scb-bounce {
  0%, 80%, 100% { transform: scale(0.7);  opacity: 0.35; }
  40%           { transform: scale(1);    opacity: 1; }
}

.scb-row.bot.is-streaming .scb-bubble {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
}

/* ─── Input bar ─────────────────────────────────────────────── */
.scb-form {
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid var(--scb-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

.scb-form-compose {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.scb-reply-preview {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(13, 59, 102, 0.06);
  border: 1px solid var(--scb-border);
  border-right: 3px solid var(--scb-accent);
  direction: rtl;
}

.scb-reply-preview-body {
  min-width: 0;
  flex: 1;
}

.scb-reply-preview-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--scb-accent);
  margin-bottom: 2px;
}

.scb-reply-preview-text {
  display: block;
  font-size: 12px;
  color: var(--scb-muted, #64748b);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.scb-input {
  flex: 1!important;
  border: 1px solid var(--scb-border)!important;
  background: #f8fafc !important;
  border-radius: 12px !important;
  padding: 11px 14px !important;
  outline: none !important;
  font-size: 14px !important;
  color: var(--scb-text) !important;
  margin: auto!important;
  transition:
    border-color 0.15s,
    background 0.15s !important;
}
.scb-input:focus {
  border-color: var(--scb-accent);
  background: #fff;
}
.scb-send {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  background: #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition:
    background 0.15s,
    color 0.15s,
    transform 0.15s;
}
.scb-send.active {
  background: #ff6a00;
  color: #fff;
}
.scb-send.active:hover {
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 480px) {
  .scb-panel {
    right: 12px;
    left: 12px;
    width: auto;
    height: calc(100vh - 100px);
    bottom: 86px;
  }
  .scb-fab {
    right: 16px;
    bottom: 16px;
  }
  .scb-greet {
    right: 80px;
    bottom: 28px;
  }
}

/* Ensure [hidden] wins over display:flex on widget sections */
#scb-root [hidden] {
  display: none !important;
}

/* Icon images — SVG embedded as data URI in SCB_CFG.icons */
#scb-root .scb-icon-img {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  max-width: none !important;
  max-height: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  object-fit: contain !important;
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  flex-shrink: 0 !important;
}

#scb-root .scb-fab .scb-icon-img {
  width: 26px !important;
  height: 26px !important;
}

#scb-root .scb-reply-btn .scb-icon-img {
  width: 16px !important;
  height: 16px !important;
}

#scb-root .scb-send .scb-icon-img {
  width: 18px !important;
  height: 18px !important;
  transform: scaleX(-1);
}

#scb-root button.scb-close img,
#scb-root button.scb-send img,
#scb-root button.scb-fab img,
#scb-root button.scb-reply-btn img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Defensive resets against aggressive WordPress theme button styles */
#scb-root button.scb-close,
#scb-root button.scb-send,
#scb-root button.scb-fab,
#scb-root button.scb-reply-btn {
  text-indent: 0 !important;
  font-size: inherit !important;
  line-height: 1 !important;
  overflow: visible !important;
  border: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

#scb-root button.scb-close {
  background: transparent !important;
  background-image: none !important;
  color: #fff !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  padding: 0 !important;
}

#scb-root button.scb-close:hover {
  background: rgba(255, 255, 255, 0.16) !important;
}

#scb-root button.scb-send {
  background: #e2e8f0 !important;
  background-image: none !important;
  color: #64748b !important;
}

#scb-root button.scb-send.active {
  background: #ff6a00 !important;
  color: #fff !important;
}

#scb-root button.scb-send.active:hover {
  background: #ff6a00 !important;
}

#scb-root button.scb-fab {
  background: linear-gradient(135deg, var(--scb-accent), var(--scb-accent-2)) !important;
  background-color: var(--scb-accent) !important;
  color: #fff !important;
  box-shadow:
    0 14px 30px rgba(13, 59, 102, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.12) !important;
}

#scb-root button.scb-fab:hover,
#scb-root button.scb-fab.is-open {
  background: linear-gradient(135deg, var(--scb-accent), var(--scb-accent-2)) !important;
  background-color: var(--scb-accent) !important;
  color: #fff !important;
}

#scb-root button.scb-reply-btn {
  background: rgba(13, 59, 102, 0.06) !important;
  background-image: none !important;
  color: var(--scb-accent) !important;
}

#scb-root button.scb-reply-btn:hover {
  background: rgba(13, 59, 102, 0.12) !important;
}

#scb-root button.scb-close::before,
#scb-root button.scb-close::after,
#scb-root button.scb-send::before,
#scb-root button.scb-send::after,
#scb-root button.scb-fab::before,
#scb-root button.scb-fab::after,
#scb-root button.scb-reply-btn::before,
#scb-root button.scb-reply-btn::after {
  box-sizing: border-box;
}

/* .scb-ai-avatar .scb-bot-img{
  background-image: url(./icons8-bot-50.png)!important;

} */
