/* Simple Modern Loading Screen */
.app-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family:
    'Segoe UI',
    -apple-system,
    BlinkMacSystemFont,
    'Roboto',
    sans-serif;
  z-index: 9999;
}

.loading-content {
  text-align: center;
  max-width: 300px;
}

.loading-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: url('/content/images/logo.png') no-repeat center center;
  background-size: contain;
}

.loading-title {
  font-size: 24px;
  font-weight: 300;
  color: #2c3e50;
  margin: 0 0 32px 0;
  letter-spacing: 0.5px;
}

.loading-spinner {
  display: flex;
  justify-content: center;
}

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

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

/* Responsive */
@media (max-width: 768px) {
  .loading-logo {
    width: 60px;
    height: 60px;
  }

  .loading-title {
    font-size: 20px;
  }

  .spinner {
    width: 32px;
    height: 32px;
  }
}
