/* Tutorial Overlay */
.tutorial-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tutorial-overlay.active {
  display: block;
  opacity: 1;
}

.tutorial-card {
  position: absolute;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  width: 320px;
  max-width: 90%;
  z-index: 10001;
  transition: all 0.3s ease;
}

.tutorial-card h3 {
  margin-top: 0;
  color: #111827;
  font-size: 1.2rem;
}

.tutorial-card p {
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.tutorial-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tutorial-steps {
  font-size: 0.9rem;
  color: #9ca3af;
}

.tutorial-btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}

.tutorial-btn:hover {
  background: #1d4ed8;
}

/* Highlight target element */
.tutorial-highlight {
  position: relative;
  z-index: 10002;
  box-shadow: 0 0 0 4px #2563eb, 0 0 0 5000px rgba(0, 0, 0, 0.5);
  background: white;
  pointer-events: none; /* Let clicks pass through if needed, or block */
}
