#probo-dtf-configurator {
    font-family: Arial, sans-serif;
    margin: 20px 0;
}

.probo-step {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
}

.probo-step-header {
    background: #f7f7f7;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.probo-step-header h4 {
    margin: 0;
    font-size: 16px;
}

.probo-check {
    display: none;
    color: #2ecc71;
    font-size: 18px;
}

.probo-step.completed .probo-check {
    display: block;
}

.probo-step-body {
    padding: 16px;
    display: none;
}

.probo-step.active .probo-step-body {
    display: block;
}

/* Inputs */
.probo-step input,
.probo-step select,
.probo-step textarea {
    width: 100%;
    padding: 8px;
    margin-top: 6px;
}

/* Color Picker (Beautiful) */
.color-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.color-preview {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
}

/* Price */
.probo-price {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
}
#probo-dtf-configurator { font-family: Arial,sans-serif; margin:20px 0; }
.probo-step { border:1px solid #e1e1e1; border-radius:6px; margin-bottom:12px; overflow:hidden; }
.probo-step-header { background:#f7f7f7; padding:14px 16px; display:flex; justify-content:space-between; align-items:center; cursor:pointer; }
.probo-step-header h4 { margin:0; font-size:16px; }
.probo-check { display:none; color:#2ecc71; font-size:18px; }
.probo-step.completed .probo-check { display:inline; }
.probo-step-body { padding:16px; display:none; }
.probo-step.active .probo-step-body { display:block; }
.probo-step input, .probo-step select, .probo-step textarea { width:100%; padding:8px; margin-top:6px; }
.color-picker-wrapper { display:flex; align-items:center; gap:12px; }
.color-preview { width:36px; height:36px; border-radius:50%; border:2px solid #ccc; cursor:pointer; }
.probo-price { font-size:18px; font-weight:bold; margin-top:15px; }

.upload-progress {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    margin-top: 10px;
}

.upload-bar {
    height: 100%;
    width: 0%;
    background: #2ecc71;
    border-radius: 4px;
    transition: width .2s ease;
}

/* new styles */

/* Sidebar */
#probo-sidebar {
    position: sticky;
    top: 120px;
    padding: 16px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    margin-top: 20px;
    background: #fafafa;
}

#probo-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#probo-sidebar li {
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 4px;
}

#probo-sidebar li.active {
    background: #2ecc71;
    color: #fff;
    font-weight: bold;
}

/* File Preview */
.file-preview {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-preview button {
    background: #eee;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
}
