#imageArea {
    position: relative;
    display: inline-block; /* Ensure it displays inline */
    margin-top: 10px; /* Add some spacing */
}

#colorPicker {
    margin: 10px 0; /* Add spacing above and below the color picker */
}

#imageOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent; /* Initially transparent */
    pointer-events: none; /* Allow clicks to pass through to the image */
}