/* Clean white background during app initialization */
html, body {
  background: #ffffff;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* Once app loads, it will override with its own background */
#root {
  min-height: 100vh;
  background: white;
}

/* Loading state styles */
.app-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  z-index: 9999;
}

.app-loading-content {
  text-align: center;
  color: #E51854;
}

.app-loading-logo {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #E51854;
}

.app-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(229, 24, 84, 0.2);
  border-top-color: #E51854;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

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

.app-loading-text {
  font-size: 16px;
  opacity: 0.9;
}