/* Theme 5 Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
  border-radius: 10px;
  border: 2px solid #e2e8f0;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #334155 #e2e8f0;
}

/* Ensure reCAPTCHA badge stays at bottom-left corner so chat support options on bottom-right are free to open */
.grecaptcha-badge {
  position: fixed !important;
  bottom: 14px !important;
  left: 0 !important;
  right: auto !important;
  z-index: 9990 !important;
  width: 70px !important;
  overflow: hidden !important;
  transition: width 0.3s ease !important;
}

.grecaptcha-badge:hover,
.grecaptcha-badge:focus-within {
  width: 256px !important;
}

/* Chat support widget z-index priority */
iframe[src*="tawk"],
div[id*="tawk"],
.crisp-client,
#crisp-chatbox,
.zEWidget-launcher,
[class*="chat-widget"],
[id*="chat-widget"],
.ss-chat-fab,
.ss-chat-window-box {
  z-index: 2147483647 !important;
  pointer-events: auto !important;
}