.skeleton {
  animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-img {
  width: 100%;
  height: 180px;
  background: #ddd;
  border-radius: 8px;
}

.skeleton-text {
  height: 15px;
  background: #ddd;
  margin: 10px 0;
  border-radius: 4px;
}

.skeleton-btn {
  width: 80px;
  height: 35px;
  background: #ddd;
  border-radius: 6px;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.empty-message {
  text-align: center;
  padding: 40px;
  font-size: 1.2rem;
  opacity: 0.7;
}