/* Skeleton styles */
.skeleton {
    background: #e0e0e0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  .skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 1.5s infinite;
  }
  
  @keyframes shimmer {
    0% {
      left: -100%;
    }
    100% {
      left: 100%;
    }
  }
  
  .skeleton-thumb {
    height: 200px;
    width: 100%;
  }
  
  .skeleton-header {
    height: 20px;
    margin-top: 10px;
    width: 60%;
  }

  .skeleton-title {
  height: 20px;
  width: 60%;
  margin: 10px auto;
}

  
  .skeleton-button {
    height: 30px;
    width: 80%;
    margin: 10px auto;
  }
  
  .spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #cbe5d4;
    border-top-color: #4766FF;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  