body {
  margin: 0;
}

.loader-container {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: #f5f5f0;
  align-items: center;
  justify-content: center;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-logo {
  width: 160px;
}

.loader-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #d0d0c8;
  border-top-color: #555;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
