#auth-loading {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 9999;
}

#auth-loading .spinner {
  width: 52px;
  height: 52px;
  border: 2px solid #e0e0e0;
  border-top-color: var(--theme-color, #42B5B8);
  border-radius: 50%;
  animation: auth-spin 0.8s linear infinite;
  margin-right: 12px;
}

@keyframes auth-spin {
  to { transform: rotate(360deg); }
}

/* Hide restricted menu items */
.hide-menu-item {
  display: none !important;
}
