
/* Contenedor principal a pantalla completa */
.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: sans-serif;
  transition: opacity 0.4s ease;
}

/* El círculo que pulsa */
.pulse {
  width: 60px;
  height: 60px;
  background-color: #155DFC;
  border-radius: 50%;
  margin-bottom: 20px;
  animation: pulse-animation 1.5s infinite ease-in-out;
}

/* Texto debajo del círculo */
.loading-text {
  color: #555;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

@keyframes pulse-animation {
  0% { transform: scale(0.95); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 0.5; }
  100% { transform: scale(0.95); opacity: 0.9; }
}

/*
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.loader {
  border and border-top should match the app theme
  border: 4px solid #FFFFFF;
  border-top: 4px solid #3F51B5;
  border-radius: 50%;
  similar size to CircularProgressIndicator
  width: 35px;
  height: 35px;
  similar animation to CircularProgressIndicator
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}*/