.guided-tour-highlight {
  position: relative;
  z-index: 1081 !important;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.24), 0 0 0 9999px rgba(8, 15, 30, 0.55);
  border-radius: 18px;
  transition: box-shadow 0.2s ease;
}

.guided-tour-overlay {
  position: fixed;
  inset: 0;
  z-index: 1084;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.guided-tour-overlay.is-visible {
  opacity: 1;
}

.guided-tour-card {
  position: absolute;
  z-index: 1085;
  width: min(360px, calc(100vw - 24px));
  background: #fff;
  color: #10233f;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(12, 28, 56, 0.28);
  border: 1px solid rgba(16, 35, 63, 0.08);
  padding: 1rem;
  pointer-events: auto;
}

.guided-tour-step {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 0.65rem;
}

.guided-tour-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.guided-tour-body {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #42526b;
  margin-bottom: 0.9rem;
}

.guided-tour-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.guided-tour-actions-left,
.guided-tour-actions-right {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.guided-tour-launcher {
  position: fixed;
  right: 20px;
  bottom: 96px;
  z-index: 1075;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(16, 35, 63, 0.24);
}

.guided-tour-launcher.is-hidden {
  display: none;
}

body.guided-tour-active .navbar,
body.guided-tour-active footer,
body.guided-tour-active .app-navbar-brand,
body.guided-tour-active .footer-gradient {
  position: relative;
  z-index: 1084;
  pointer-events: auto;
}

@media (max-width: 767px) {
  .guided-tour-launcher {
    right: 14px;
    bottom: 88px;
  }

  .guided-tour-card {
    width: calc(100vw - 20px);
    left: 10px !important;
    right: 10px !important;
  }
}

@media (max-width: 1024px) {
  .guided-tour-highlight {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.24), 0 0 0 9999px rgba(8, 15, 30, 0.48);
    border-radius: 16px;
  }

  .guided-tour-card {
    width: auto;
    max-width: none;
    left: 10px !important;
    right: 10px !important;
    top: auto !important;
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
    border-radius: 16px;
    padding: 0.9rem;
    max-height: min(46vh, 360px);
    overflow-y: auto;
  }

  .guided-tour-title {
    font-size: 1rem;
  }

  .guided-tour-body {
    font-size: 0.92rem;
    line-height: 1.42;
    margin-bottom: 0.8rem;
  }

  .guided-tour-actions {
    gap: 0.65rem;
  }

  .guided-tour-actions-left,
  .guided-tour-actions-right {
    width: 100%;
    justify-content: space-between;
  }

  .guided-tour-actions-right .btn {
    flex: 1 1 auto;
  }
}
