    /* Skeleton container */
    .skeleton-main-container {
		max-width: 100%;
		margin: 0 auto;
	  }
  
	  /* Row styling */
	  .skeleton-row {
		display: flex;
		align-items: flex-start;
		gap: 20px;
		margin-bottom: 30px;
		margin-top: 30px;
	  }
  
	  /* Placeholder image */
	  .placeholder-image {
		width: 80px;
		height: 80px;
		background-color: #e0e0e0;
		border-radius: 5px;
		animation: pulse 1.5s infinite ease-in-out;
	  }
  
	  /* Placeholder text */
	  .placeholder-text {
		flex: 1;
	  }

	  .placeholder-line, .placeholder-header, .placeholder-instructions, .placeholder-sidebarItem {
		background-color: #e0e0e0;
		animation: pulse 2.5s infinite ease-in-out;
		margin: 8px 0;
	  }

	  .placeholder-header, .placeholder-instructions, .placeholder-sidebarItem {
		border-radius: 6px;
	  }

	  .placeholder-instructions {
		height: 24px;
		width: 100%;
	  }

	  .placeholder-header {
		height: 18px;
		width: 35%;
		min-width:200px;
	  }

	  .placeholder-sidebarItem {
		height: 16px;
		width: 100%;
	  }

	  .placeholder-line {
		
		height: 8px;
		border-radius: 4px;
		width: 90%;
	  }

  
	  /* Shorter line */
	  .placeholder-line.short {
		width: 66%;
	  }
  
	  /* Loading animation */
	  @keyframes pulse {
		0% {
		  opacity: 1;
		}
		50% {
		  opacity: 0.4;
		}
		100% {
		  opacity: 1;
		}
	  }