/**
 * 历史订单导入与回收站功能样式表
 * 目前主要依赖 Tailwind CSS，此处预留用于自定义样式
 */

/* 示例：将来可以将 JS 中动态生成的内联样式移至此处 */
.history-order-card {
    /* 对应 JS 中的: mt-4 border p-4 rounded-md shadow-md calculation-result-table overflow-x-auto */
}

/* 汇总报价相关样式 */
.material-summary-item {
    margin-right: 1.5rem;
    /* Adjust spacing between summary items */
    display: inline-block;
    /* Allow items to be on the same line */
}

.material-summary-text {
    white-space: normal; /* Allow wrapping */
}

/* 响应式样式 */
@media (max-width: 768px) {
    .calculation-result-table button {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}
