/* Shimmer animation */
.skeleton {
  background-color: #e2e2e2;
  background-image: linear-gradient(90deg, #e2e2e2 0px, #f5f5f5 40px, #e2e2e2 80px);
  background-size: 600px;
  background-repeat: no-repeat;
  animation: shimmer 1.3s infinite linear;
  border-radius: 6px;
}

@keyframes shimmer {
  0% {
    background-position: -100px;
  }
  100% {
    background-position: 600px;
  }
}

/* Container */
.info-cards-skeleton {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  max-width: 350px;
  margin: auto;
}

/* Individual card */
.info-card-skeleton {
  position: relative;
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Title line */
.skeleton-card-title {
  width: 70%;
  height: 20px;
  margin-bottom: 10px;
}

.skeleton-card-title.short {
  width: 50%;
}

/* Arrow line */
.skeleton-arrow-icon {
  width: 24px;
  height: 16px;
}

/* Background pattern area */
.skeleton-bg-pattern {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 0.1;
}
