/* ========================================================================
   Item Spinner Overlay
   ======================================================================== */
.item-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%); /* Center spinner in parent */
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* Allow clicks to pass through */
  background: none;
}

/* Hide spinner when not needed */
.item-spinner[hidden] {
  display: none;
}

/* ========================================================================
   Spinner Circle (SVG or div)
   ======================================================================== */
.item-spinner .spinner-circle {
  width: 36px;
  height: 36px;
  border-width: 6px;
} 