/* ==================== 图片去水印 —— 蒙版画布叠加 ==================== */
/* 确保预览画布容器支持蒙版绝对定位 */
.preview-canvas-wrapper {
    position: relative;
    display: inline-block;
}

/* 蒙版画布 —— 覆盖在预览画布之上，用于涂抹标记 */
#maskCanvas {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: auto;
    cursor: crosshair;
    z-index: 2;
}

/* 蒙版工具栏 */
.mask-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.mask-toolbar .ange-btn {
    font-size: 12px;
}

#statusText {
    font-size: 12px;
    margin-left: 8px;
    vertical-align: middle;
    color: #8c8c8c;
}

/* 响应式 */
@media (max-width: 768px) {
    .mask-toolbar {
        gap: 6px;
    }
}
