#blur-radius.form-range {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    cursor: pointer;
}
#blur-radius.form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: #cbd5e1;
    border-radius: 999px;
}
#blur-radius.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #3b82f6;
    margin-top: -6px;
    cursor: pointer;
}
#blur-radius.form-range::-moz-range-track {
    width: 100%;
    height: 6px;
    background: #cbd5e1;
    border-radius: 999px;
}
#blur-radius.form-range::-moz-range-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #3b82f6;
    border: none;
    cursor: pointer;
}
.preview-img-box {
    height: 350px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #ffffff;
}
.preview-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.options-group {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}
