/* OPS360 Onboarding Spotlight Tour */
.ob-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
}
.ob-spotlight {
  position: fixed;
  border-radius: 6px;
  box-shadow: 0 0 0 2000px rgba(15,25,40,.72);
  pointer-events: none;
  transition: all .28s cubic-bezier(.4,0,.2,1);
  z-index: 9001;
}
.ob-tooltip {
  position: fixed;
  background: #fff;
  border-radius: 12px;
  padding: 22px 24px 18px;
  width: 320px;
  max-width: calc(100vw - 32px);
  box-shadow: 0 8px 40px rgba(15,25,40,.22), 0 1px 4px rgba(15,25,40,.10);
  z-index: 9002;
  pointer-events: all;
  transition: opacity .2s, transform .2s;
  font-family: 'Lato', -apple-system, sans-serif;
}
.ob-tooltip-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}
.ob-tooltip-title {
  font-size: 15px;
  font-weight: 800;
  color: #1C2B3A;
  line-height: 1.3;
}
.ob-tooltip-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-size: 18px;
  line-height: 1;
  padding: 0 0 0 8px;
  flex-shrink: 0;
}
.ob-tooltip-close:hover { color: #555; }
.ob-tooltip-body {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.55;
  margin-bottom: 18px;
}
.ob-tooltip-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.ob-tooltip-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}
.ob-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ddd;
  transition: background .2s;
}
.ob-dot.active { background: #C4A46B; width: 14px; border-radius: 3px; }
.ob-tooltip-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ob-btn {
  padding: 7px 16px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity .15s;
}
.ob-btn:active { transform: translateY(1px); }
.ob-btn-skip {
  background: none;
  color: #aaa;
  padding: 7px 0;
  font-weight: 600;
}
.ob-btn-skip:hover { color: #555; }
.ob-btn-next {
  background: #1C2B3A;
  color: #fff;
}
.ob-btn-next:hover { opacity: .85; }
.ob-btn-finish {
  background: #C4A46B;
  color: #fff;
}
.ob-btn-finish:hover { opacity: .85; }
.ob-arrow {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
}

@media (max-width: 480px) {
  .ob-tooltip { width: calc(100vw - 32px); }
}
