/* Estilos personalizados para el tour */
.introjs-helperNumberLayer {
  background: #4f46e5;
}

.introjs-tooltip {
  min-width: 300px;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.introjs-tooltip-title {
  color: #4f46e5;
  font-weight: 600;
}

.introjs-button {
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s;
}

.introjs-button.introjs-nextbutton {
  background-color: #4f46e5;
  color: white;
  border: none;
}

.introjs-button.introjs-nextbutton:hover {
  background-color: #4338ca;
  box-shadow: 0 2px 10px rgba(79, 70, 229, 0.4);
}

.introjs-skipbutton {
  color: #6b7280;
}

.introjs-skipbutton:hover {
  color: #4b5563;
}

/* Estilos para el botón de ayuda */
/* Estilos para el botón de ayuda */
#help-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 8px 12px;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  white-space: nowrap;
  width: auto;
  min-width: 40px;
  height: 40px;
}

#help-button:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  background: #4338ca;
}
