

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.loading-overlay .spinner-icon {
  font-size: 48px;
  color: #fff;
  animation: fa-spin 0.8s linear infinite;
}

.loading-overlay .spinner-label {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

@keyframes fa-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
