/* Custom styles and micro-animations for SEO Doctor Uptime Monitor */

@keyframes pulse-glow-emerald {
  0%, 100% {
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.7);
  }
}

@keyframes pulse-glow-rose {
  0%, 100% {
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(244, 63, 94, 0.8);
  }
}

.status-pulse-operational {
  animation: pulse-glow-emerald 3s infinite ease-in-out;
}

.status-pulse-degraded {
  animation: pulse-glow-rose 2s infinite ease-in-out;
}

/* Glassmorphism card effects */
.glass-panel {
  background: rgba(30, 41, 59, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Smooth transitions */
.transition-card {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-card:hover {
  transform: translateY(-2px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}
