/* Startup Loading Animation Styles */
.flutter-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
}

.flutter-loading img {
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
}

.flutter-loading.loading-fallback {
  background-color: #f5f5f5;
}

.flutter-loading.loading-fallback::after {
  content: "Loading...";
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  color: #666;
  margin-top: 20px;
}

.flutter-loading.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

/* Responsive design for mobile */
@media (max-width: 600px) {
  .flutter-loading img {
    max-width: 200px;
    max-height: 200px;
  }
}