/* ============================================================
   9.81파크 기술지원 시스템 - 공통 스타일
   Tailwind로 표현 힘든 것만 여기 정리
   ============================================================ */

/* Pretendard 웹폰트 */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* 스크롤바 스타일 (선택) */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* 프린트 */
@media print {
  header, nav, .no-print { display: none !important; }
  body { background: white; }
}