.scp-wrapper{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
    padding:30px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    max-width:1000px;
    margin:auto;
    font-family:Arial, sans-serif;
}

.scp-right button{font-size:12px;}
.scp-left,
.scp-right{
    flex:1;
    min-width:300px;
}

#scp-color-wheel{
    width:100%;
    height:250px;
    border:none;
    background:none;
    cursor:pointer;
}

.scp-slider-group{
    margin-top:20px;
}

.scp-slider-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.scp-slider-group input{
    width:100%;
}

.scp-preview{
    width:100%;
    height:180px;
    border-radius:16px;
    margin-bottom:30px;
    border:2px solid #eee;
}

.scp-output{
    margin-bottom:20px;
}

.scp-output label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.scp-copy-group{
    display:flex;
    gap:10px;
}

.scp-copy-group input{
    flex:1;
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
}

.scp-copy-group button{
    border:none;
    background:#111;
    color:#fff;
    padding:12px 18px;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
}

.scp-copy-group button:hover{
    opacity:0.8;
}


/* =====================================
   RANGE SLIDER BASE
===================================== */

.scp-slider-group input[type="range"]{
    -webkit-appearance:none;
    width:100%;
    height:30px;
    border-radius:20px;
    outline:none;
    cursor:pointer;
    overflow:hidden;
}

/* =====================================
   HUE SLIDER GRADIENT
===================================== */

#scp-hue{
    background:linear-gradient(
        to right,
        #ff0000 0%,
        #ffff00 17%,
        #00ff00 33%,
        #00ffff 50%,
        #0000ff 67%,
        #ff00ff 83%,
        #ff0000 100%
    );
}

/* =====================================
   CONTRAST / LIGHTNESS SLIDER
===================================== */

#scp-contrast{
    background:linear-gradient(
        to right,
        #000000 0%,
        #ffffff 100%
    );
}

/* =====================================
   ALPHA SLIDER
===================================== */

#scp-alpha{
    background:linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,1) 100%
    );
}

/* =====================================
   SLIDER THUMB
===================================== */

.scp-slider-group input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance:none;
    width:20px;
    height:20px;
    border-radius:50%;
    background:#ffffff;
    border:3px solid #111;
    cursor:pointer;
    box-shadow:0 2px 6px rgba(0,0,0,0.2);
}

.scp-slider-group input[type="range"]::-moz-range-thumb{
    width:20px;
    height:20px;
    border-radius:50%;
    background:#ffffff;
    border:3px solid #111;
    cursor:pointer;
}

@media(max-width:768px){

    .scp-wrapper{
        padding:20px;
    }

}