/* ═══════════════════════════════════════════
   Estilos compartidos del Dashboard
   ═══════════════════════════════════════════ */

/* Reset adicional */
* {
  scrollbar-width: thin;
  scrollbar-color: #374151 transparent;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #374151;
  border-radius: 3px;
}

/* Transiciones suaves */
a, button {
  transition: all 0.15s ease;
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.3s ease;
}

/* Mono font para API keys */
.font-mono {
  font-family: 'Courier New', Courier, monospace;
}

/* Dot pulsante de conexión */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-pulse-dot {
  animation: pulse 2s infinite;
}
