/* Splash screen styles */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff; /* White background as requested */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

#splash-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

#splash-screen .logo {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
}

/* App name has been removed */

#splash-screen .spinner {
  margin-top: 30px;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(79, 70, 229, 0.3);
  border-radius: 50%;
  border-top-color: #4f46e5;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
