.psmls-feature-shell__body {
  min-height: 120px;
  display: flex;
  align-items: center;
}

.psmls-feature-shell__loading,
.psmls-feature-shell__error {
  width: 100%;
  padding: 12px 0;
  color: #666;
  font-size: 14px;
}

.psmls-feature-shell__loading::after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f1f1f1 25%, #e7e7e7 37%, #f1f1f1 63%);
  background-size: 400% 100%;
  animation: psmlsPremiumShimmer 1.2s ease-in-out infinite;
}

@keyframes psmlsPremiumShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}