/* PWA Install Prompt Animations */
@keyframes slide-in-from-bottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-in {
  animation: slide-in-from-bottom 0.3s ease-out forwards;
}

/* Ensure the prompt is visible above all content */
.z-50 {
  z-index: 50;
}

/* Mobile responsive adjustments */
@media (max-width: 640px) {
  .fixed.bottom-4.left-4.right-4 {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}
