/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 */

/* Prevent horizontal overflow — fixes iOS Safari keyboard-open page shift bug */
html, body {
  overflow-x: hidden;
}

/* Flash Messages Animations */
@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-out-right {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

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