/* Skeleton Loader Styles */
.skeleton {
  background: linear-gradient(90deg, #f1f1f1 25%, #e2e2e2 37%, #f1f1f1 63%);
  background-size: 400% 100%;
  animation: skeleton-loading 1.2s ease-in-out infinite;
  border-radius: 8px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

.skeleton-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(99,102,241,0.06);
  min-width: 220px;
  min-height: 320px;
  margin-bottom: 1.5rem;
}

.skeleton-img {
  width: 100%;
  height: 120px;
  border-radius: 8px;
}

.skeleton-title {
  width: 70%;
  height: 22px;
}

.skeleton-text {
  width: 100%;
  height: 14px;
}

.skeleton-btn {
  width: 40%;
  height: 32px;
  border-radius: 6px;
  margin-top: 1rem;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: #ef4444;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.toast.show {
  opacity: 1;
  pointer-events: auto;
}
