/**
 * Clopy24 Invoice System - Base Styles
 * 기본 스타일
 */

/* 이미 mobile.css에 모든 스타일이 포함되어 있음 */
/* 추가 스타일은 여기에 작성 */

/* 프린트 최적화 */
@media print {
    .no-print,
    .clopy24-header,
    .clopy24-btn,
    button {
        display: none !important;
    }
    
    body {
        background: white;
        padding: 0;
    }
    
    .clopy24-container {
        max-width: 100%;
        padding: 0;
    }
    
    .clopy24-card {
        box-shadow: none;
        border: 1px solid #dee2e6;
        page-break-inside: avoid;
    }
}

/* 추가 유틸리티 */
.cursor-pointer {
    cursor: pointer;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.font-weight-bold {
    font-weight: 700;
}

.font-weight-normal {
    font-weight: 400;
}
