/* styles.css */

/* Estilos gerais */
html,
body {
  align-items: center;
  justify-content: center;
  align-items: center;
  /* background-color: #f0f0f0;  Cor de fundo opcional */
}

/* Estilos para o container de carregamento */
#loading-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff; /* Cor de fundo opcional */
  z-index: 9999; /* Certifique-se de que esteja acima de qualquer outro conteúdo */
}

#loading-content {
  text-align: center;
}

#loading-content p {
  font-size: 24px;
  margin-bottom: 20px;
}