.form-group .clr-field button{
    border: 1px solid #bbb;
}


.input-px input{
    width:100%;
}
.type-toggle {
    margin-bottom: 15px;
}

.type-toggle .btn {
    width: 50%;
}

.preview-panel {
    background: #e7e9eb;
    text-align: center;
    padding: 20px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preview-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    display: inline-block;
    margin-bottom: 15px;
}

.preview-box img {
    max-width: 250px;
    max-height: 250px;
    display: block;
}

.preview-placeholder {
    color: #999;
    padding: 50px 20px;
}

.preview-loading {
    padding: 50px 20px;
    color: #666;
}

.format-group .btn {
    min-width: 60px;
}

.slider-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-row input[type="range"] {
    -webkit-appearance: none;
    flex: 1;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    outline: none;
}

.slider-row input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: #138a9f;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(19, 138, 159, 0.4);
}

.slider-row input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: #138a9f;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(19, 138, 159, 0.4);
}

.slider-row .slider-value {
    min-width: 70px;
    text-align: right;
    font-weight: bold;
    color: #555;
}

.input-px {
    position: relative;
}

.input-px input {
    padding-right: 30px;
}

.input-px .suffix {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

@media (min-width: 768px) {
    .row-eq-height {
        display: flex;
    }

    .row-eq-height > [class*='col-'] {
        display: flex;
        flex-direction: column;
    }

    .row-eq-height .panel {
        flex: 1;
    }
}