body {
  background-color: #f8f9fa;
}

@keyframes energyFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.card {
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.btn-primary {
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(13,110,253,0.4);
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(13,110,253,0.7);
  transform: translateY(-2px);
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.table {
  border-radius: 8px;
  overflow: hidden;
}