body {
  min-height: 100vh;
}

.app-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #0d6efd, #6ea8fe);
  color: #fff;
  font-size: 1.25rem;
}

.card {
  border-radius: 1rem;
}

.table td,
.table th {
  vertical-align: middle;
  white-space: nowrap;
}

.spin {
  display: inline-block;
  animation: spin 1s linear infinite;
}

#empty-state i {
  color: #adb5bd;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
