/* Settings Tour Styles */
.tour-overlay {
  animation: fadeIn 0.3s ease-in-out;
}

.tour-tooltip {
  animation: slideIn 0.3s ease-out;
}

.tour-tooltip button {
  transition: all 0.2s ease;
}

.tour-tooltip button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Light theme tooltip styles */
[data-theme="light"] .tour-tooltip {
  background: #ffffff;
  border-color: #3b82f6;
  color: #0f172a;
}

[data-theme="light"] .tour-tooltip h3 {
  color: #3b82f6;
}

[data-theme="light"] .tour-tooltip button {
  color: #0f172a;
}

[data-theme="light"] .tour-tooltip button[style*="background: var(--acc)"] {
  background: #3b82f6 !important;
  color: white !important;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tour-tooltip {
    max-width: 280px;
    padding: 1rem;
  }
  
  .tour-tooltip h3 {
    font-size: 1rem;
  }
  
  .tour-tooltip p {
    font-size: 0.9rem;
  }
}


