.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loading-overlay.visible {
  display: flex;
}

.loading-spinner {
  text-align: center;
}

.loading-spinner img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.loading-spinner p {
  color: #333;
  font-size: 16px;
  margin-top: 10px;
}

.form-actions[disabled] {
  opacity: 0.6;
  pointer-events: none;
}
