/* styles.css */
.hide-loader {
  display: none;
}

.view-loader {
  display: flex;
}

#loader {
  border: 4px solid #000000;
  border-style: dotted;
  /* Light gray background */
  border-top: 4px solid rgb(0, 0, 0);
  /* Blue spinner */
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 0.7s linear infinite;
  transform: translate(-50%, -50%);
}

.loader-container {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: white;
  z-index: 20000;
  align-items: center;
  justify-content: center;
}

/* Keyframes for spin animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#green-loader {
  border: 4px solid #cdcdcd;
  /* Light gray background */
  border-top: 4px solid #06a53e;
  /* Blue spinner */
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 0.7s linear infinite;
  transform: translate(-50%, -50%);
}

.green-loader-container {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: white;
  z-index: 20000;
  align-items: center;
  justify-content: center;
}

/* Keyframes for spin animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
