/* =====================================================
 * convert.css - 图片合成 PDF 工具专用样式
 * ===================================================== */

.pdf-options-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.pdf-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    align-items: flex-end;
}

.pdf-control-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pdf-control-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0;
}

.pdf-select {
    height: 38px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 13px;
    color: #1e293b;
    background-color: #ffffff;
    transition: all 0.2s ease;
    width: 100%;
}

.pdf-select:focus {
    border-color: #4f46e5;
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

/* 页码徽章 */
.page-number-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: #4f46e5;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* 排序控制按钮组 */
.order-actions {
    display: flex;
    gap: 4px;
}

.order-actions .btn {
    padding: 2px 6px;
    font-size: 11px;
    border-radius: 4px;
}

/* 场景指南表格增强 */
.pdf-scenario-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-top: 30px;
}

.pdf-scenario-card h2 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.pdf-scenario-card p.subtitle {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 20px;
}
