body {
  background: #f7f7f7;
}

.page-title {
  font-size: 1.15rem;
  font-weight: 600;
}

.table-scroll {
  overflow-x: auto;
}

.skeleton {
  min-height: 18px;
  border-radius: 4px;
  background: linear-gradient(90deg, #eee 25%, #f8f8f8 50%, #eee 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1s infinite linear;
}

@keyframes skeleton-loading {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}
