/* App route loading (src/app/loading.jsx) */
.app-route-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.app-route-loading__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(27, 131, 84, 0.2);
  border-top-color: #1b8354;
  border-radius: 50%;
  animation: app-route-loading-spin 0.75s linear infinite;
}

@keyframes app-route-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  // background-color: #e8e8e8;
  height: 100vh;
  width: 100%;
}
