/* Skeleton Loader CSS */
.skeleton {
  background-color: #e2e2e2;
  border-radius: 4px;
  min-height: 20px;
  margin-bottom: 10px;
  animation: skeleton-loading 1.2s infinite linear;
}
@keyframes skeleton-loading {
  0% {
    background-color: #e2e2e2;
  }
  50% {
    background-color: #f5f5f5;
  }
  100% {
    background-color: #e2e2e2;
  }
}
.skeleton-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.skeleton-item {
  height: 32px;
  width: 100%;
  background: #e2e2e2;
  border-radius: 4px;
  animation: skeleton-loading 1.2s infinite linear;
}
