.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .container-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Improve table scrolling hint */
  .table-container {
    position: relative;
  }
  .table-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8));
    pointer-events: none;
  }
  
  /* Better touch targets */
  a, button {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Popup Styles */
#address-popup.show {
  opacity: 1;
  pointer-events: auto;
}

#address-popup.show > div {
  transform: scale(100%);
}
