/* Fixer Advanced Support Optimized - CSS */

/* Scrollable container for ticket form only */
.ast-form,
.ast-ticket-wrapper {
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Prevent mobile zoom on inputs */
.ast-form input,
.ast-form textarea,
.ast-form select {
  font-size: 16px !important;
  line-height: 1.5;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}

/* Prevent resizing textarea */
.ast-form textarea {
  resize: none;
}
