/* 자연 전자 근로계약서 스타일 */

/* signature_pad.js 캔버스 기본 설정 */
#employee-sig {
    border: 2px dashed #90CAF9;
    background: #FAFAFA;
    cursor: crosshair;
    border-radius: 6px;
    display: block;
    margin: 0 auto;
    touch-action: none;
}

/* 계약서 컨테이너 반응형 */
@media (max-width: 768px) {
    .container {
        padding: 24px 16px !important;
        margin: 10px !important;
    }
    .sign-row {
        flex-direction: column !important;
    }
    h1.contract-title {
        font-size: 20px !important;
        letter-spacing: 4px !important;
    }
    table.wage-table {
        font-size: 12px;
    }
}

/* 인쇄 스타일 */
@media print {
    body { background: white; }
    .container { box-shadow: none; }
    .no-print { display: none !important; }
    .status-bar { display: none; }
}
