/* PWA Splash Screen - Clean Logo Only */
.pwa-splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: center;
}

.pwa-splash-logo {
  width: 100px;
  height: 100px;
  min-width: 100px;
  min-height: 100px;
  max-width: 100px;
  max-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.splash-logo-image {
  width: 100px;
  height: 100px;
  min-width: 100px;
  min-height: 100px;
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}

.pwa-splash-text {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

/* Smooth fade out when app loads */
.pwa-splash-screen.loaded {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}