.global-loading {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* oscuramento */
  backdrop-filter: blur(2px);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: all; /* BLOCCA TUTTO */
}

  .global-loading.d-none {
    display: none;
  }

  .global-loading .spinner {
    width: 70px;
    height: 70px;
    border: 6px solid rgba(255, 255, 255, 0.2);
    border-top-color: #ff1d1d;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
  }

  .global-loading .loading-text {
    margin-top: 16px;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-align: center;
  }

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
