/* 
 * iOS Safari zoom prevention
 * Applies 16px minimum font-size to inputs to prevent auto-zoom on focus
 * Uses @supports with iOS-only property to avoid affecting other browsers
 */
@supports (-webkit-touch-callout: none) {
    input,
    select,
    textarea,
    .form-control,
    .form-select {
        font-size: 16px !important;
    }
}
