/* Custom Glassmorphism & Accent Styles for Group of Dada */

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.glow-ambient {
  animation: pulseGlow 8s ease-in-out infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #090d16;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Smooth Tab transitions */
.tab-active {
  background-color: #4f46e5 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
}

.tab-inactive {
  background-color: transparent !important;
  color: #94a3b8 !important;
}

.tab-inactive:hover {
  background-color: rgba(30, 41, 59, 0.5) !important;
  color: #ffffff !important;
}
