.status {
   display: none;
}

#loadingSpinner {
  display: none;
  margin: 1rem auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1rem;
}

#loadingSpinner::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 4px solid #3498db;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  vertical-align: middle;
  margin-right: 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}




