body{
  min-height: 100vh;
  display: flex;
  box-sizing: border-box;
}

#app {
  flex: 1;
  display: flex;
  flex-direction: column;
}


/* Light $tack FRAMEWORK start */
.spa-component-placeholder{
  display: none;
}

/* 1. The Base State */
.is-loading {
  position: relative !important;
  pointer-events: none; /* Disable clicks */
  overflow: hidden;    /* Keep the pulse inside the box */
}

/* 2. The Pulse Overlay */
.is-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.05); /* Very light tint */
  z-index: 10;
  animation: storagePulse 1.5s ease-in-out infinite;
}

/* 3. The Animation Logic */
@keyframes storagePulse {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.8;
    background-color: rgba(200, 200, 200, 0.2);
  }
  100% {
    opacity: 0.2;
  }
}

/* Optional: Dim the actual content slightly while pulsing */
.is-loading > * {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
/* Light $tack FRAMEWORK end */