body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 20px;
}

#image-container {
    display: inline-block;
    position: relative;
    cursor: crosshair;
    border: 2px solid #333;
    /* Optional: Hide container if no image is loaded */
    min-width: 400px; 
    min-height: 200px;
    background-color: #f0f0f0;
}

#clickable-image {
    display: block;
    width: 100%;
    height: auto; 
}

#upload-button {
    cursor: pointer;
}

#upload-button:hover {
    background-color: lightgrey;
}

/* Style for the point markers remains the same */
.point {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
