/* body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 20px;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

h1 {
  color: #4a6fa5;
}

.content {
  margin-top: 40px;
}

.feature {
  margin-bottom: 30px;
}

.feature h2 {
  color: #4a6fa5;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #343a40;
    color: #f8f9fa;
  }
  h1,
  .feature h2 {
    color: #5a8dd6;
  }
}

body.offline .offline-banner {
  display: block;
}

.loading {
  display: inline-block;
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
}

.loading div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: loading 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} */



.offline-banner {
  display: none;
  background: #FB8500;
  color: white;
  text-align: center;
  padding: 0.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in 0.8s ease-out;
}

/* Smooth transitions */
* {
  transition: all 0.3s ease;
}

/* Glassmorphism effects */
.backdrop-blur-sm {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}


