/* Splash screen styles */
body.page-loading {
  font-family: sans-serif;
  margin: 0;
  height: 100%;
  overflow: hidden;
}

#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.page-loading #splash-screen {
  opacity: 1;
  visibility: visible;
}

#splash-screen img {
  height: 100px;
}

#splash-screen h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 1rem;
  color: #4B5563;
}
