/* === Global Loading Placeholder Style === */
.loading-placeholder {
  display: inline-block;
  width: 100%;
  height: 1em;
  background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: loadingShimmer 1.2s infinite;
  border-radius: 4px;
  color: transparent;
  pointer-events: none;
}

@keyframes loadingShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
