/* استایل کلی */
.cjm-pro-wrapper {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.cjm-pro-stages {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.cjm-pro-stage {
    background: #4CAF50;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: move;
    transition: transform 0.3s;
}

.cjm-pro-stage:hover {
    transform: translateY(-3px);
}

.cjm-pro-canvas {
    min-height: 300px;
    border: 2px dashed #ddd;
    padding: 20px;
    margin: 20px 0;
    background: #f9f9f9;
}

/* مودال */
.cjm-pro-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.cjm-pro-modal-content {
    background: white;
    width: 600px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cjm-pro-close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

/* فرم جزئیات */
#cjm-pro-stage-form input,
#cjm-pro-stage-form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#cjm-pro-stage-form button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}