/* Custom styles for the color picker */
#dropZone {
    transition: all 0.3s ease;
    cursor: pointer;
}

#dropZone:hover {
    border-color: #6366f1;
    background-color: #f8fafc;
}

#dropZone.drag-over {
    border-color: #6366f1;
    background-color: #eef2ff;
}

/* Custom range slider thumb */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #6366f1;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #6366f1;
    cursor: pointer;
}

/* Color wheel canvas */
#colorWheelCanvas {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    cursor: crosshair;
}

/* Color preview animation */
#selectedColor, #customColor {
    transition: background-color 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}