/* splash-screen.css
 Marketing splash screen styling for a full-window logo display */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background-color: transparent;
  cursor: none !important;
}

body[data-theme="light"] #splash-screen.show {
  background-color: var(--lm-sidebar-bg-color);
}

body[data-theme="dark"] #splash-screen.show {
  background-color: var(--dm-sidebar-bg-color);
}

#splash-screen img {
  max-width: 50%;
  max-height: 50%;
}