/* Swiss Media360 Master Hub Custom Styles */

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.8; filter: drop-shadow(0 0 15px rgba(76, 111, 255, 0.4)); }
  50% { opacity: 1; filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.7)); }
}

.animate-fade-in {
  animation: fadeIn 0.25s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tab-btn.active {
  background: rgba(76, 111, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(76, 111, 255, 0.35);
  box-shadow: 0 4px 12px rgba(76, 111, 255, 0.15);
}

.tab-btn:not(.active):hover {
  background: rgba(30, 41, 59, 0.6);
}

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