/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* Native-feel mobile: suppress tap highlight, smooth scrolling */
* {
  -webkit-tap-highlight-color: transparent;
}

html {
  -webkit-overflow-scrolling: touch;
}

/* Safe area padding for notched phones */
.pb-safe {
  padding-bottom: env(safe-area-inset-bottom);
}

/* Shimmer loading effect */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer {
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

/* Bouncing dots for loading status */
@keyframes bounce-dot {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-4px); }
}
.bounce-dot { animation: bounce-dot 1.2s ease-in-out infinite; }
.bounce-dot:nth-child(2) { animation-delay: 150ms; }
.bounce-dot:nth-child(3) { animation-delay: 300ms; }

/* Crossfade for loading text */
[data-loading-text] {
  transition: opacity 0.3s ease;
}
[data-loading-text].fade-out {
  opacity: 0;
}

/* Prevent text zoom on input focus in iOS */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
textarea,
select {
  font-size: 16px;
}
