html,
body,
#__next {
  height: 100%;
}

body {
  margin: 0;
}

/* Loader global (sin dependencia de MUI) */
.app-loader-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #f6fcfc;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.app-loader-overlay .loader-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 40px;
  border-radius: 20px;
  
 /* background: rgba(255, 255, 255, 0.95); */
 
  /* backdrop-filter: blur(10px); */
}

.app-loader-overlay .tagline {
  font-size: 1rem;
  font-weight: 500;
  color: #5f6368;
  animation: app-fade 1.4s ease-in-out infinite alternate;
}

@keyframes app-fade {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

