/* File: karvish-maps/frontend/src/App.css */
/* App-level styles */
/* Version: 1.0.0 */
/* Since: 20-Jan-2026 01:30 PM IST */

.app {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* Loading state */
.app-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.app-loading .loader-content {
  text-align: center;
  color: white;
}

.app-loading .loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

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