/* Splash Screen Styles */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

body.loaded .splash-screen {
  opacity: 0;
  pointer-events: none;
}

.splash-screen .logo {
  width: 80px;
  height: 80px;
  background: url('/favicon.ico') no-repeat center;
  background-size: contain;
  margin-bottom: 20px;
}

.splash-screen .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Dark mode support */
[data-bs-theme="dark"] .splash-screen {
  background: #1e1e2d;
}

[data-bs-theme="dark"] .splash-screen .spinner {
  border-color: #2a2a3d;
  border-top-color: #6571ff;
}
