body{
    font-family: Arial, Helvetica, sans-serif;
    background: #f5F5F5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.widget{
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    text-align: center;
    width: 320px;
    
}
.widget h2{
    margin-top: 0;
    color: #333;
}
.pallete{
    display: flex;
    margin: 15px 0;
    flex-wrap: wrap;
    gap: 5px;
   

}
.color-row{
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 6px 5px;
    border-radius: 6px;
    transition: transform 0.2s, background 0.2s;

}
.color-row:hover{
    transform: scale(1.02);
    background: rgba(0,0,0,0.3);
}
.color-box{
    width: 15px;
    height: 15px;
    border-radius: 6px;
    margin-right: 12px;
    flex-shrink: 0;
    border: 1px solid #ccc;
}
.color-code{
    font-size: 14px;
    color: #555;
   font-family: monospace;
}
button{
    background: #00bfa5;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}   
button:hover{
    background: #008f7f;
}