.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  animation: logoPulse 1.2s ease-in-out infinite;
}

.loader-message {
  font-size: 15px;
  font-weight: 500;
  color: #555;
  margin: 0;
  letter-spacing: 0.3px;
}

@keyframes logoPulse {
  0%   { transform: scale(1);    opacity: 1; }
  50%  { transform: scale(1.12); opacity: 0.75; }
  100% { transform: scale(1);    opacity: 1; }
}
