@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-content {
  animation: fadeInUp 0.3s ease;
}

.nav-item {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-brand,
.toolbar-card,
.table-card {
  transition: all 0.2s ease;
}
