/* ============================================================
   订单/报告弹窗 - 共享样式
   用于 showMyOrders() / showReportDialog() 等动态弹窗
   ============================================================ */

.payment-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.payment-dialog {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    width: 90%;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.payment-dialog h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-dialog h3 a {
    font-size: 24px;
    color: #999;
    text-decoration: none;
    line-height: 1;
}

/* 订单列表项 */
.payment-dialog .order-item {
    background: #fafafa;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 8px;
    text-align: left;
}
