/* 共用样式 - 与开票控制系统保持一致 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: #f0f4f8;
}

/* 表格滚动条 */
.table-wrapper::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.table-wrapper::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 4px;
}
.table-wrapper::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
}
.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* 动画 */
@keyframes flash-green {
    0% { background-color: #e8f5e9; }
    50% { background-color: #a5d6a7; }
    100% { background-color: #e8f5e9; }
}
.flash {
    animation: flash-green 0.5s ease;
}

/* 状态样式 */
.status-未申报 {
    color: #dc2626;
}
.status-已申报 {
    color: #16a34a;
}