/* 证件照制作 —— 页面样式 */

/* 上传拖入区 */
.idphoto-drop {
    border: 2px dashed #adb5bd;
    border-radius: 8px;
    background: #fbfcfd;
    color: #6c757d;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
.idphoto-drop:hover,
.idphoto-drop.dragover {
    border-color: #0d6efd;
    background: rgba(13, 110, 253, 0.04);
}

/* 画布编辑区 */
.idphoto-editor-wrap {
    background: #eef1f5;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
}
#idphoto-canvas {
    max-width: 100%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    touch-action: none; /* 让 canvas 捕获指针拖动，不触发页面滚动 */
}

/* 背景色块 */
.idphoto-bg-swatch {
    width: 40px;
    height: 40px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
    padding: 0;
}
.idphoto-bg-swatch.selected {
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.35);
}

/* 4 步面板小标题 */
.idphoto-step .card-header {
    font-weight: 600;
}

/* 结果预览 */
#render-preview {
    max-width: 100%;
    max-height: 520px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
