/* ============================================================
   SecureOneBank — Global Guided Tutorial Styles
   Transparent overlay + blue ring + breadcrumb
============================================================ */

/* Transparent overlay — does NOT dim or block UI */
.tutorial-overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 9990;
  display: none;
}

/* Blue breadcrumb instructional bubble */
.tutorial-breadcrumb {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 40, 80, 0.85);
  color: #4DA6FF;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  max-width: 90%;
  text-align: center;
  z-index: 9992;
  display: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* Blinking thin blue ring highlight */
.tutorial-ring {
  position: absolute;
  border-radius: 12px;
  padding: 6px;
  pointer-events: none;
  z-index: 9993;
  animation: tutorialRingPulse 2s infinite;
  box-shadow: 0 0 0 2px rgba(77, 166, 255, 0.95);
}

@keyframes tutorialRingPulse {
  0%   { box-shadow: 0 0 0 2px rgba(77, 166, 255, 0.95); }
  50%  { box-shadow: 0 0 0 10px rgba(77, 166, 255, 0.0); }
  100% { box-shadow: 0 0 0 2px rgba(77, 166, 255, 0.95); }
}

/* Next button */
.tutorial-next-btn {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: #4DB823;
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  z-index: 9992;
  display: none;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.tutorial-next-btn:hover {
  background: #5fd52f;
}
