.scp-picker {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 10px 18px rgba(0,0,0,0.2);
    z-index: 9999;
}

.scp-palette {
    width: 100%;
    height: 180px;
    position: relative;
    margin-bottom: 15px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.scp-palette-bg {
    width: 100%;
    height: 100%;
    background-blend-mode: multiply;
}

/* .scp-cursor {
    width: 10px;
    height: 10px;
    border: 5px solid white;
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
    transform: translate(-5px, -5px);
} */

.scp-cursor {
    width: 24px !important;
    height: 24px !important;
    border: 6px solid white !important;
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
    box-shadow: 
        0 0 2px rgba(0,0,0,0.5), /* outer shadow */
        inset 0 0 4px rgba(0,0,0,0.3); /* inner shadow */
    transform: translate(-14px, -14px);
    background: transparent; /* Ensure center is transparent */
}

/* Optional: Add a subtle highlight to enhance the 3D effect */
.scp-cursor::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    pointer-events: none;
}


.scp-hue-slider {
    height: 10px;
    background: linear-gradient(to right, 
      #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000);
    position: relative;
    margin-bottom: 25px;
    cursor: pointer;
    border-radius: 5px;
    user-select: none; /* Prevent text selection */
    -webkit-user-select: none; /* For Safari */
  }
  
  .scp-hue-thumb {
    width: 24px !important;
    height: 24px !important;
    border: 6px solid white !important;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-12px, -50%);
    pointer-events: none;
    box-shadow: 0 0 2px rgba(0,0,0,0.5),
      inset 0 0 4px rgba(0,0,0,0.3);
  }
  
  /* Add this to your existing CSS to prevent drag ghost image */
  .scp-hue-thumb::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: -5px;
    top: -5px;
  }

  /* Optional: Add a subtle highlight to enhance the 3D effect */
    .scp-hue-thumb::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.4);
        pointer-events: none;
    }

.scp-inputs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.scp-input-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.scp-input-group label {
    font-size: 12px;
    color: #000000;
    font-weight: bold;
}

.scp-hex {
    width: 70px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 12px;
}

.scp-rgb {
    width: 50px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 12px;
}

.scp-preview {
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
    display: none;
}