/* Custom Styles & Cyberpunk AI Studio Tweaks */

/* Glassmorphism & Glow Effects */
.card-glow {
  box-shadow: 0 0 25px -5px rgba(6, 182, 212, 0.15);
}

.glow-green {
  box-shadow: 0 0 15px 0 rgba(34, 197, 94, 0.35);
}

.glow-red {
  box-shadow: 0 0 15px 0 rgba(239, 68, 68, 0.35);
}

/* Animations */
@keyframes pulse-slow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.animate-pulse-slow {
  animation: pulse-slow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.shake-animation {
  animation: shake 0.4s ease-in-out;
}

/* Active tab styling */
.workflow-tab.active-tab {
  border-color: rgba(6, 182, 212, 0.8) !important;
  background-color: rgba(6, 182, 212, 0.12) !important;
  opacity: 1 !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #0a0d14;
}

::-webkit-scrollbar-thumb {
  background: #1f293d;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #38bdf8;
}
