/* Tutorial walkthrough styles */
.tutorial-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px; /* leave room for nav */
  z-index: 2000;
}

.tutorial-tooltip {
  background: #fff;
  color: #2C3E50;
  border-radius: 8px;
  padding: 1rem 1.4rem;
  max-width: 320px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  font-size: 0.95rem;
  line-height: 1.4;
  position: absolute;
  z-index: 2003;
}

.tutorial-tooltip h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.tutorial-controls {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.tutorial-controls button {
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: #4A90E2;
  color: #fff;
}

.tutorial-controls button[disabled] {
  opacity: 0.4;
  cursor: default;
}

/* Highlighted element */
.tutorial-highlight {
  position: relative !important;
  z-index: 2002 !important;
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.7) !important;
  border-radius: 4px !important;
  transition: box-shadow 0.2s ease;
} 