.guidance-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(0.1px);
  backdrop-filter: blur(0.1px);
}
.guidance-highlight {
  position: fixed;
  border: 2px solid #FF5A50;
  background-color: rgba(255, 90, 80, 0.05);
  border-radius: 8px;
  transition: none;
  z-index: 45;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
  overflow: visible;
}
.guidance-tooltip {
  z-index: 50;
  max-width: 400px;
  transition: none;
}
.guidance-tooltip-content {
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  padding: 1rem;
  position: relative;
}
.guidance-progress-dots {
  display: flex;
  gap: 4px;
  margin-top: 1rem;
}
.guidance-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}
.guidance-progress-dot.active {
  background-color: #FF5A50;
}
.guidance-progress-dot.inactive {
  background-color: #d1d5db;
}
.guidance-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.guidance-button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}
.guidance-button.primary {
  background-color: #FF5A50;
  color: white;
}
.guidance-button.primary:hover {
  background-color: #e04a40;
}
.guidance-button.secondary {
  background-color: transparent;
  color: #6b7280;
}
.guidance-button.secondary:hover:not(:disabled) {
  background-color: #f3f4f6;
  color: #374151;
}
.guidance-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.guidance-close-button {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.guidance-close-button:hover {
  background-color: #f3f4f6;
  color: #6b7280;
}
@media (max-width: 768px) {
  .guidance-tooltip {
    max-width: calc(100vw - 2rem);
    margin: 0 1rem;
  }
  .guidance-navigation {
    flex-direction: column;
    gap: 8px;
  }
  .guidance-button {
    width: 100%;
    justify-content: center;
  }
}
