/* #custom-app .image-container {
    position: relative;
    display: inline-block;
    width: 900px;
}

#custom-app .main-image {
    width: 100%;
    height: auto;
}

#custom-app .point {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

#custom-app #point1 {
    top: 20%;
    left: 30%;
}

#custom-app #point2 {
    top: 50%;
    left: 50%;
}

#custom-app #point3 {
    top: 80%;
    left: 70%;
}

#custom-app .uploaded-image {
    position: absolute;
    border-radius: 50%;
    object-fit: cover;
    width: 150px;
    height: 150px;
} */
#mainImage {
    width: 900px; /* Adjust as needed */
    height: auto;
}

.clickable-area {
    position: absolute;
    width: 100px; /* Adjust as needed */
    height: 100px; /* Adjust as needed */
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    overflow: hidden;
    /* animation: pulsate 1.5s infinite; */
}


#area1 {
    top: 44.7%;
    left: 7.2%;
    width: 50px;
    height: 50px;
    background-color: rgb(25, 23, 24);
    /* transform: rotate(9deg); */
    transition: filter 0.3s ease;
}
#area1 span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 9px;
    font-weight: bold;
    
}
#area1:hover{
    filter: drop-shadow(0 0 20px rgba(203, 0, 0, 1));
    background-color: rgb(168, 6, 6);
}
#area2 {
    top: 33%;
    left: 39.4%;
    width: 161px;
    height: 161px;
    /*background-color: rgba(0, 0, 0, 0.5);*/ /* Added background color for visibility */
    background-color: rgb(25, 23, 24);
    transition: filter 0.3s ease;
}
#area2 span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(224, 224, 224);
    font-size: 22px;
    font-weight: bold;
    animation: pulsate 1.5s infinite;
    
}
#area2:hover{
    filter: drop-shadow(0 0 20px rgb(6, 6, 6));
    background-color: rgb(168, 6, 6);
}
#area3 {
    top: 44.7%;
    left: 85.8%;
    width: 50px;
    height: 50px;
    background-color: rgb(25, 23, 24);
    transition: filter 0.3s ease;
}
#area3 span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color:white;
    font-size: 9px;
    font-weight: bold;
    
}
#area3:hover{
    filter: drop-shadow(0 0 20px rgba(203, 0, 0, 1));
    background-color: rgb(168, 6, 6);
}
/* Pulsating animation */
/* @keyframes pulsate {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
} */

.uploaded-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uploaded-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}
.image-added {
    background-color: transparent !important; /* Make the background transparent */
}