/* Skeleton loading animation */
@keyframes skeleton-loading {
  0% {
    background-color: #e0e0e0;
  }
  50% {
    background-color: #f5f5f5;
  }
  100% {
    background-color: #e0e0e0;
  }
}

.skeleton-card {
  opacity: 0.7;
}

.skeleton-text {
  background-color: #e0e0e0 !important;
  color: transparent !important;
  border-radius: 4px;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  min-height: 1em;
  margin: 8px 0;
}

.skeleton-text:nth-child(1) {
  width: 40%;
  height: 24px;
}

.skeleton-text:nth-child(2) {
  width: 70%;
  height: 80px;
}

.skeleton-text:nth-child(3) {
  width: 30%;
  height: 36px;
}

.skeleton-shape {
  background-color: #e0e0e0 !important;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: skeleton-loading 1.5s ease-in-out infinite;
}

.skeleton-button {
  background-color: #e0e0e0 !important;
  border: none !important;
  color: transparent !important;
  border-radius: 4px;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  min-width: 150px;
  height: 44px;
}

.skeleton-image {
  background-color: #e0e0e0 !important;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  min-height: 300px;
  border-radius: 4px;
}

.skeleton-icon {
  opacity: 0.3;
  animation: skeleton-loading 1.5s ease-in-out infinite;
}