/* PlantQR 보조 스타일 */

html, body { -webkit-tap-highlight-color: transparent; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Pretendard', 'Noto Sans KR', sans-serif; }

/* 입력 폼 기본 보정 */
input, select, textarea { font-size: 16px; }  /* iOS 자동 줌 방지 */

/* 인쇄 시 QR 카드만 출력 */
@media print {
  body * { visibility: hidden; }
  #qr-card, #qr-card * { visibility: visible; }
  #qr-card {
    position: absolute; left: 50%; top: 30mm; transform: translateX(-50%);
    border-color: #16a34a;
  }
  header, .print\:hidden { display: none !important; }
}

/* 스피너 */
@keyframes spin { to { transform: rotate(360deg); } }
.animate-spin { animation: spin 0.8s linear infinite; }

/* 부드러운 전환 */
a, button { transition: background-color 0.15s, box-shadow 0.15s, border-color 0.15s; }
