#form_submission_toaster {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  display: none;
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

#form_submission_toaster.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

#form_submission_toaster.success {
  background-color: #4caf50;
  color: white;
}

#form_submission_toaster.error {
  background-color: #f44336;
  color: white;
}

#form_submission_toaster.info {
  background-color: #333;
  color: white;
}

.form_submission_loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.form_submission_loader::after {
  content: "";
  border: 6px solid #ccc;
  border-top: 6px solid #333;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 0.8s linear infinite;
}

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