@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-slide-in {
  animation: slideIn 0.4s ease-out;
}

.stat-card {
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  transition: width 1s ease-out;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-warning {
  background: #fef3c7;
  color: #92400e;
}

.badge-info {
  background: #dbeafe;
  color: #1e40af;
}

.badge-success {
  background: #dcfce7;
  color: #166534;
}

.badge-danger {
  background: #fee2e2;
  color: #991b1b;
}

.badge-neutral {
  background: #f1f5f9;
  color: #475569;
}

.anomaly-pulse {
  box-shadow: inset 0 0 0 2px #ef4444;
  background-color: #fffafb;
  animation: alert-blink 2s infinite;
}

@keyframes alert-blink {
  0% {
    background-color: #fffafb;
  }
  50% {
    background-color: #fee2e2;
  }
  100% {
    background-color: #fffafb;
  }
}
.tooltip {
  position: relative;
  cursor: help;
}

.tooltip:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 0.75rem;
  margin-bottom: 8px;
  z-index: 10;
}

.chart-container {
  position: relative;
}

.loading-skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.trend-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
}

.trend-up {
  color: #10b981;
}

.trend-down {
  color: #ef4444;
}

.export-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: none;
  min-width: 150px;
  z-index: 50;
}

.export-dropdown.active {
  display: block;
}

.export-dropdown button {
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.export-dropdown button:hover {
  background: #f8fafc;
}

#pieChart, #mainChart {
  max-height: 150px;
}

#mainChart {
  min-height: 100%;
}

/* Sidebar Responsive Transitions */
#sidebar {
  transition: margin-left 0.3s ease-in-out;
}/*# sourceMappingURL=styles.css.map */