#app-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease;
}

.loader-logo img {
  width: 180px;
  height: auto;
  margin-bottom: 30px;
}

.loader-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #ddd;
  border-top-color: #38a748;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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