/* styles/Skeleton.css */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    background: #e0e0e0;
}

.skeleton-text {
    width: 100%;
    height: 16px;
    background: #e0e0e0;
    margin-bottom: 8px;
}

.skeleton-button {
    width: 100px;
    height: 36px;
    background: #e0e0e0;
    margin-top: 16px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes pulse { 
    0% { opacity: 1; } 
    50% { opacity: 0.5; } 
    100% { opacity: 1; } 
  }
  
  .animate-pulse { 
    animation: pulse 1.5s infinite; 
  }

  .skeleton-box {
    background: #e0e0e0;
    border-radius: 4px;
    animation: pulse 1.5s infinite;
  }
  
  @keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
  }