html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  margin-bottom: 2rem;
}

#loadingIndicator {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);  /* Темний фон з певною прозорістю */
  z-index: 1000;
  display: none;
}