.shell-ready .workspace-container,
.shell-ready .panel-card,
.shell-ready .metric-card {
  animation: fadeUp 360ms ease both;
}

.shell-ready .panel-card:nth-child(2),
.shell-ready .metric-card:nth-child(2) {
  animation-delay: 40ms;
}

.shell-ready .panel-card:nth-child(3),
.shell-ready .metric-card:nth-child(3) {
  animation-delay: 80ms;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
