/* 隐私提示样式 */
.privacy-notice {
    background: #fff5f5 !important;
    border: 2px solid #dc3545 !important;
    border-radius: 8px !important;
    padding: 12px !important;
    margin: 8px 0 !important;
}

.privacy-notice p {
    color: #dc3545 !important;
    font-weight: bold !important;
    margin: 0 !important;
    font-size: 14px !important;
}

/* 代跑功能标题居中 */
#proxy-run-selection h2 {
    text-align: center !important;
    margin-bottom: 30px !important;
    color: #333 !important;
}

/* 成绩查询返回按钮居中 */
#grades-display .btn-container {
    text-align: center;
    margin-top: 30px;
}

/* 完成证明图片样式 */
.completion-proof-img {
    max-width: 200px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.completion-proof-img:hover {
    transform: scale(1.05);
}

/* 管理员后台证明截图上传区域 */
#completion-proof-group {
    border: 2px dashed #28a745;
    border-radius: 8px;
    padding: 15px;
    background: #f8fff9;
}

#completion-proof-group label {
    color: #28a745;
    font-weight: bold;
}

/* 订单状态优化 */
.order-status.status-completed {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}