#css-border-radius-generator{
    max-width:1200px;
    margin:0 auto;
    font-family:inherit;
    color:#111827;
}

#css-border-radius-generator *{
    box-sizing:border-box;
}

#css-border-radius-generator .cbr-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:30px;
}

#css-border-radius-generator .cbr-panel{
    background:#fff;
    border-radius:18px;
    padding:10px;
    margin-bottom:30px;
    border:1px solid #ddd;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

#css-border-radius-generator .cbr-panel-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:25px;
}

#css-border-radius-generator h2{
    padding:15px;
    color:#000;
    font-weight:bold;
    font-size:24px;
    margin-top:20px;
}

#css-border-radius-generator h3{
    margin:0;
    font-size:24px;
    font-weight:700;
}

#css-border-radius-generator .cbr-controls-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

@media(max-width:600px){

    #css-border-radius-generator .cbr-controls-wrap{
        grid-template-columns:1fr;
    }

}

#css-border-radius-generator .cbr-control{
    background:#f8fafc;
    border:1px solid #edf1f5;
    border-radius:14px;
    padding:18px;
}

#css-border-radius-generator .cbr-control label{
    display:block;
    margin-bottom:12px;
    font-size:13px;
    font-weight:600;
    color:#475569;
}

#css-border-radius-generator .cbr-control input[type="range"]{
    width:100%;
    cursor:pointer;
}

#css-border-radius-generator .cbr-number-input{
    width:100%;
    margin-top:12px;
    height:42px;
    border:1px solid #d1d5db;
    border-radius:8px;
    padding:0 12px;
    font-size:14px;
}

#css-border-radius-generator .cbr-value{
    display:block;
    margin-top:10px;
    font-size:13px;
    color:#64748b;
}

#css-border-radius-generator .cbr-preview-settings{
    margin-top:35px;
    padding-top:30px;
    border-top:1px solid #e5e7eb;
}

#css-border-radius-generator .cbr-setting{
    margin-top:20px;
}

#css-border-radius-generator .cbr-setting label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
}

#css-border-radius-generator .cbr-setting input[type="color"]{
    width:100%;
    height:42px;
    border:none;
    padding:0;
    cursor:pointer;
    border-radius:8px;
    background:none;
}

#css-border-radius-generator .cbr-setting input[type="range"]{
    width:100%;
    margin-bottom:10px;
}

#css-border-radius-generator .cbr-setting input[type="number"]{
    width:100%;
    height:42px;
    border:1px solid #d1d5db;
    border-radius:8px;
    padding:0 12px;
    font-size:14px;
}

#css-border-radius-generator .cbr-preview-title{
    margin-bottom:25px;
}

#css-border-radius-generator #cbr-preview-container{
    height:420px;
    background:#f3f4f6;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
    overflow:hidden;
    padding:20px;
}

#css-border-radius-generator #cbr-preview-box{
    width:200px;
    height:200px;
    background:#ffffff;
    transition:.3s;
    max-width:100%;
}

#css-border-radius-generator .cbr-css-output-wrap{
    margin-top:25px;
}

#css-border-radius-generator .cbr-output-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

#css-border-radius-generator #cbr-copy-css{
    border:none;
    border-radius:5px;
    padding:10px 20px;
    background:#1b6997;
    color:#fff;
    cursor:pointer;
    font-weight:bold;
    font-size:14px !important;
    font-weight:500;
    transition:.2s;
}

#css-border-radius-generator #cbr-copy-css:hover{
    opacity:.9;
    background:#d95a00 !important;
}

#css-border-radius-generator #cbr-css-output{
    background:#f3f4f6;
    border-radius:12px;
    padding:18px;
    overflow:auto;
    font-size:14px;
    line-height:1.7;
    color:#374151;
    min-height:90px;
    white-space:pre-wrap;
    word-break:break-word;
}